%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"); ?> <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:'deleteAll_record.php', data:{'del_userManage':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=view-seo"> User 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">Name</th> <th width="45">Email</th> <th width="89">Contact No</th> <th width="86">Organisation</th> <th width="63"> Edit </th> <th width="63"> Delete </th> </tr> </thead> <tbody> <?php $queryt_synch = mysqli_query($connection,"select * from `ln_meeting_us` order by id DESC") 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['name'];?></td> <td><?php echo $ret['email'];?></td> <td><?php echo $ret['contact_no'];?></td> <td><?php echo $ret['organization'];?></td> <td><a href="index.php?mode=edit-user-manage&sid=<?php echo $ret['id'];?>"><i class="fa fa-edit" 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>