UnknownSec Bypass
403
:
/
var
/
www
/
cotutilitydash
/ [
drwxrwxr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
list_user.php
<?php include "header.php"?> <?php include "sidemenu.php"?> <div id="page-wrapper"> <div class="col-md-12 graphs"> <div class="xs"> <!-- <h3>Manage User</h3> --> <!-- <div class="form-group"> <div class="row"> <div class="col-md-6 grid_box1"> <h3>Manage User</h3> </div> <div class="col-md-6" align="right"> <a class="btn btn-primary" href="#" style="margin: 5px"><i class="fa fa-lock"></i> Logout</a> </div> <div class="clearfix"> </div> </div> </div> --> <table width="100%"> <tr> <td width="50%"> <h3>Manage User</h3> </td> <td width="50%" align="right"> <a class="btn btn-primary" href="manage_user.php" style="margin: 5px"><i class="fa fa-plus"></i> Add New User</a> </td> </tr> </table> <div class="bs-example4 tab-content" data-example-id="simple-responsive-table"> <!-- <h3>User List</h3> --> <div class="table-responsive"> <?php $sql= "SELECT * from createusertb where isdeleted='".$gnotdeleted."' order by id DESC"; $result=mysqli_query($conn, $sql) or die("Query Failed."); if (mysqli_num_rows($result)>0) { ?> <table id="studtable" class="table table-striped table-bordered"> <thead> <tr> <th>No.</th> <!-- <th>ID</th> --> <th>Name</th> <th>User Name</th> <th>Password</th> <th>User Type</th> <th>Mobile No</th> <th></th> <th></th> </tr> </thead> <tbody> <?php $serial= 1; while ($row = mysqli_fetch_assoc($result)) { ?> <tr> <td><?php echo $serial ?></td> <!-- <td><?php echo $row['id']; ?></td> --> <td> <?php echo $row['name']; ?> </td> <td> <?php echo $row['username']; ?> </td> <td> <?php echo $row['upassword']; ?> </td> <td> <?php echo $row['usertype']; ?> </td> <td> <?php echo $row['mobileno']; ?> </td> <td align="center"> <a href='manage_user.php?id=<?php echo $row['id']; ?>&op=<?php echo "Update"; ?>'><i class="glyphicon glyphicon-pencil"></i></a> </td> <td align="center"> <a href='manage_user.php?id=<?php echo $row['id']; ?>&op=<?php echo "Delete"; ?>'><i class="glyphicon glyphicon-trash"></i></a> </td> </tr> <?php $serial++; } } ?> </tbody> </table> </div><!-- /.table-responsive --> </div> </div> <script> $(document).ready(function() { $("#studtable").DataTable({ bLengthChange: true, "iDisplayLength": 10, bInfo: false, responsive: true, "bAutoWidth": false }); }); </script> <?php include "footer.php"?>
Copyright © 2025 - UnknownSec