%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<?php include("secure/db_config.php"); ?> <!-- <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>--> <script src="bower_components/jquery/dist/jquery.min.js"></script> <script type="application/javascript"> $(function(){ $(document).on('click','.trash',function(){ var del_id= $(this).attr('id'); var $ele = $(this).parent().parent(); if(confirm('Are you sure to remove this record ?')) { $.ajax({ type:'POST', url:'deletedata.php', data:{'del_id':del_id}, success: function(data){ if(data){ $ele.fadeOut().remove(); }else{ alert("can't delete the row") } } }); } }); }); </script> <div class="col-md-12"> <div class="box"> <div class="box-header"> <h3 class="box-title"><a href="index.php?mode=event-management"> Event Management </a></h3> </div> <div class="box-body"> <div ng-app="sa_app" ng-controller="controller" ng-init="show_data()"> <table id="example1" class="table table-bordered table-striped"> <thead> <tr> <th width="39">Sr.No</th> <th width="43">Event Title</th> <th width="67">Profiel Pic</th> <th width="63"> Edit </th> </tr> </thead> <tbody> <?php $queryt_synch = mysqli_query($connection,"select * from `ln_event`") or die(mysqli_error()); $i=1; while($ret = mysqli_fetch_array($queryt_synch)){ ?> <tr ng-repeat="x in names"> <td><?php echo $i;?></td> <td><?php echo $ret['event_title'];?></td> <td><img src="event_img/<?php echo $ret['event_image'];?>" width="55" height="55"/></td> <!-- <td><?php //echo strip_tags($ret['speakers']);?> </td>--> <td><a href="index.php?mode=edit-event-work&sid=<?php echo $ret['id'];?>"><i class="fa fa-pencil-square-o" aria-hidden="true"></i></a></td> <!--<td><i class="fa fa-bitbucket trash" aria-hidden="true" id="<?php //echo $ret['id'];?>"></i></td>--> </tr> <?php $i++;} ?> </tbody> <tfoot> </tfoot> </table> </div> </div> </div> </div>