| Server IP : 93.86.61.54 / Your IP : 216.73.216.60 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/projects/ilink_2.0/ |
Upload File : |
<!DOCTYPE html>
<!--
*********************************
Project: Internet Link
File :
Version: 2021-01-13
Author : M. Kukic
Note : PHP v5 + MySQL + Apache
**********************************
-->
<html>
<style>
table, th, td {
border: 1px solid black;
}
th, td {
padding: 4px;
text-align: center;
}
</style>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250">
<link rel='shortcut icon' type='image/png' href='favicon.ico'/>
<meta http-equiv="refresh" content="30">
<title>ILink</title>
</head>
<body>
<?php
//
include "config.php";
//
echo"<div style='width:".$resn."px; word-wrap:break-word;'>";
echo "<fieldset>";
echo "<legend><h3>iLink - User Admin</h3></legend>";
echo "<table border=\"0\">";
echo "</fieldset>";
//
$sql = "SELECT * FROM user ORDER BY id";
if ($phpv==5){
$result = mysql_query($sql, $dbh) or die(mysql_error());
$numofrows = mysql_num_rows($result);
mysql_close($conn);
}else{
$result = mysqli_query($dbh, $sql) or die (mysqli_error($dbh));
$numofrows = mysqli_num_rows($result);
mysqli_close($conn);
}
//
echo " Users: ".$numofrows;
echo "<br><br>";
echo "<table border='1'>";
//
echo "<tr>";
echo "<th>ID</th>";
echo "<th>User</th>";
echo "<th>Pass</th>";
echo "<th>DBp</th>";
echo "<th>Status</th>";
echo "</tr>";
for ($i = 0; $i < $numofrows; $i++) {
if ($phpv==5){
$row = mysql_fetch_array($result);
}else{
$row = mysqli_fetch_array($result);
}
$id=$row['id'];
$user=$row['user'];
$pass=$row['pass'];
$dbp=$row['dbp'];
$status=$row['status'];
//
echo "<tr>";
echo "<td>".$id."</td>";
echo "<td>".$user."</td>";
echo "<td>".$pass."</td>";
echo "<td>".$dbp."</td>";
echo "<td>".$status."</td>";
//
echo "<td><a href=user-upd.php?id=".$id."&st=upd><img src='img/res.png'></a></td>";
echo "<td><a href=user-upd.php?id=".$id."&st=del><img src='img/del.png'></a></td>";
echo "<td><a href=user-upd.php?id=0&st=ins><img src='img/plus.png'></a></td>";
//
echo "</tr>";
}
echo "</table>";
?>
<hr>
<a href='javascript:history.go(-1)'><img src='img/back.png'></a><a href='index.html'><img src='img/hom.png'><a href='help.php'><img src='img/info.png'></a>
</div>
</body>
</html>