File manager - Edit - /home/custbahd/public_html/tests/admin panels/admin1/users.php
Back
<?php require('top.inc.php'); isAdmin(); if(isset($_GET['type']) && $_GET['type']!=''){ $type=get_safe_value($con,$_GET['type']); if($type=='delete'){ $id=get_safe_value($con,$_GET['id']); $delete_sql="delete from tbl_member where id='$id'"; mysqli_query($con,$delete_sql); } } $sql="select * from tbl_member order by id desc"; $res=mysqli_query($con,$sql); ?> <div class="content pb-0"> <div class="orders"> <div class="row"> <div class="col-xl-12"> <div class="card"> <div class="card-body"> <h4 class="box-title">CUSTOMER </h4> </div> <div class="card-body--"> <div class="table-stats order-table ov-h"> <table class="table "> <thead> <tr> <th class="serial">#</th> <th>ID</th> <th>Name</th> <th>Password</th> <th>Email</th> <th>Date</th> <th></th> </tr> </thead> <tbody> <?php $i=1; while($row=mysqli_fetch_assoc($res)){?> <tr> <td class="serial"><?php echo $i?></td> <td><?php echo $row['id']?></td> <td><?php echo $row['username']?></td> <td><?php echo $row['password']?></td> <td><?php echo $row['email']?></td> <td><?php echo $row['create_at']?></td> <td> <?php echo "<span class='badge badge-delete'><a href='?type=delete&id=".$row['id']."'>Delete</a></span>"; ?> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> <?php require('footer.inc.php'); ?>
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Generation time: 6.7 |
proxy
|
phpinfo
|
Settings