Server IP : 149.202.105.228 / Your IP : 216.73.216.18 Web Server : Apache System : Linux webm129.cluster030.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : atfycaf ( 116275) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/atfycaf/www/admin/ |
Upload File : |
<?php include "globalVars.php"; if ($adminID == 1 || $adminID == 2) { } else { header("Location: $ADurl"); } include "header.php"; ?> <h2>Admin User Activity Log</h2> <div class="descTab" id="htmlSelectorTab"> <div class="pFormRow"> <div class="pFormEditTitle">All Users</div> <div class="pFormEditButtons"> <form action="userManagementLogDetails.html" method="post"><input type="hidden" name="viewAdminID" value="0" /><input type="submit" class="submitButton" name="getUser" value="View Log"></form> </div> </div> <?php $adminUsersQuery = mysqli_query($conn, "SELECT * FROM admin ORDER BY id ASC") or die (mysqli_error($conn)); while ($aUQ = mysqli_fetch_array($adminUsersQuery)) { $viewAdminID = $aUQ["id"]; $viewAdminName = $aUQ["adminName"]; $viewAdminEmail = $aUQ["adminEmail"]; ?> <div class="pFormRow"> <div class="pFormEditTitle"><?php echo $viewAdminName ?><br><a href="mailto:<?php echo $viewAdminEmail ?>"><?php echo $viewAdminEmail ?></a></div> <div class="pFormEditButtons"> <form action="userManagementLogDetails.html" method="post"><input type="hidden" name="viewAdminID" value="<?php echo $viewAdminID ?>" /><input type="submit" class="submitButton" name="getUser" value="View Log"></form> </div> </div> <?php } ?> <?php include "footer.php"; ?>