| 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/radvre/admin/ |
Upload File : |
<!DOCTYPE html>
<!--
******************************
Project: Radno vreme, 2023.
Version: PHP 5-7
Author : M. Kukic
Note :
Link: http://net-nas/w3/radvre_v7/admin/adm_izl.php
******************************
-->
<html>
<link rel="stylesheet" href="lgdgstil.css">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel='shortcut icon' type='image/png' href='favicon.png'/>
<meta http-equiv="refresh" content="20">
<title>Radno vreme</title>
</head>
<body>
<?php
//
include "../config.php";
$_SESSION["sti"] = "";
//
$tabela=$u_dbp."_logdog";
//
echo"<div style='width:680px; word-wrap:break-word;'>";
echo "<fieldset>";
echo "<legend><h3>RADNO VREME - Login</h3></legend>";
echo "<table border=\"0\">";
echo "</fieldset>";
//
$sql = "SELECT * FROM logdog ORDER BY id";
if ($db==5) {
$result = mysql_query($sql, $dbh) or die (mysql_error($dbh));
$numofrows = mysql_num_rows($result);
}else{
$result = mysqli_query($dbh, $sql) or die (mysqli_error($dbh));
$numofrows = mysqli_num_rows($result);
}
//
echo "<br> Zapisa: ".$numofrows;
echo "<br><br>";
echo "<table border='1'>";
//
echo "<tr>";
echo "<th>LID</th>";
echo "<th>DispName</th>";
echo "<th>In/Out</th>";
echo "<th>Vreme</th>";
echo "<th>Note</th>";
echo "<th>Lokacija</th>";
echo "<th>Upd</th>";
echo "<th>Del</th>";
echo "</tr>";
for ($i = 0; $i < $numofrows; $i++) {
if ($db==5) {
$row = mysql_fetch_array($result);
}else{
$row = mysqli_fetch_array($result);
}
echo "<tr>";
$id=$row['id'];
echo "<td>".$id."</td>";
echo "<td>".$row['dispname']."</td>";
echo "<td>".$row['in_out']."</td>";
echo "<td>".$row['dattim']."</td>";
echo "<td>".$row['notes']."</td>";
echo "<td>".$row['lokc']."</td>";
//
echo "<td><a href=upd_log.php?id=".$id."&st=upd><img src='img/res.png'></a></td>";
echo "<td><a href=upd_log.php?id=".$id."&st=del><img src='img/del.png'></a></td>";
//
echo "</tr>";
}
echo "</table>";
echo "<hr>";
include "close_db.php";
//
echo "<img src='img/sivobl.png' width='' height=''>";
echo "<a href='javascript:history.go(-1)'><img src='img/retv.png' width='' height=''>";
echo "<img src='img/sivobl.png' width='' height=''>";
echo "<a href='upd_log.php?id=0&st=ins'><img src='img/plusv.png' width='' height=''></a></td>";
echo "<img src='img/sivobl.png' width='' height=''>";
echo "<a href='index_adm.php'><img src='img/upv.png' width='' height=''></a></td>";
?>
</div>
</body>
</html>