| 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/timoe/ |
Upload File : |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="15" />
<title>Sunlight Level</title>
</head>
<body style = "text-align: ceneter; background-color: beige;"></body>
<body>
<?php
include "config.php";
include "timoe_header-sr.php";
$par_sr = "Nivo sunčevog osvetljaja";
$par_en = "Sunlight Level";
include "timoe_par.php";
include "graph-header-sr.php";
include "graph-ord.php";
$t0 =0;
//
$ymin = 0;
$h = 0.01;
echo"<g stroke-width = '2' stroke='gray'>";
echo "<line x1='225' y1='320' x2='1025' y2='320' />";
echo "<line x1='225' y1='240' x2='1025' y2='240' />";
echo "<line x1='225' y1='160' x2='1025' y2='160' />";
echo "<line x1='225' y1='80' x2='1025' y2='80' />";
echo "</g>";
echo"<g stroke='gray'>";
echo "<line x1='225' y1='40' x2='1025' y2='40' />";
echo "<line x1='225' y1='120' x2='1025' y2='120' />";
echo "<line x1='225' y1='200' x2='1025' y2='200' />";
echo "<line x1='225' y1='280' x2='1025' y2='280' />";
echo "<line x1='225' y1='360' x2='1025' y2='360' />";
echo "</g>";
echo "<text x='50' y='20' font-size='24' font-weight='bold' fill='green'>Es[lux]</text>";
echo "<text x='208' y='400' font-size='20' font-weight='bold' fill='green'>0</text>";
echo "<text x='174' y='324' font-size='20' font-weight='bold' fill='green'>8.000</text>";
echo "<text x='164' y='244' font-size='20' font-weight='bold' fill='green'>16.000</text>";
echo "<text x='164' y='164' font-size='20' font-weight='bold' fill='green'>24.000</text>";
echo "<text x='164' y='84' font-size='20' font-weight='bold' fill='green'>32.000</text>";
echo "<text x='164' y='20' font-size='20' font-weight='bold' fill='green'>40.000</text>";
echo "<text x='1030' y='400' font-size='24' font-weight='bold' fill='green'>t</text>";
//
echo "<g stroke='red'>";
$k=0;
$row = mysqli_fetch_array($result);
$y1=400-($row['sunl']-$ymin)*$h;
for ($x = 225; $x < 1025; $x=$x+$xst) {
$k++;
$row = mysqli_fetch_array($result);
$x1=$x;
$x2=$x+$xst;
$y2=400-($row['sunl']-$ymin)*$h;
if ($k<$numofrows){
echo "<line x1=".$x1." y1=".$y1." x2=".$x2." y2=".$y2." />";
}
$y1=$y2;
}
echo "</g></g>";
echo "</svg>";
echo "</table>";
echo "<br>";
// FOOTHER
include "graph-foother-sr.php";
//MIN - MAX
$par_db="sunl";
$parameter = "Sunlight Level";
include "graph-minmax-sr.php";
mysqli_close($dbh);
?>
<table>
<tr>
<td style = "width: 100px; text-align: center"><a href = "timoe_allin.php"><img src = "img/r_ret.png" width = "" height = "48"></a></td>
<td style = "width: 200px; font-size: 12px; text-align: justify; color: blue"><i>Povratak na početnu stranicu</i></td>
<td style = "width: 400px"></td>
<td style = "width: 100px; text-align: center"><a href = "isvtg_is.php"><img src = "img/r_hlp.png" width = "" height = "48"></a></td>
<td style = "width: 200px; font-size: 12px; text-align: justify; color: blue"><i>Ukratko o informacionom sistemu za praćenje rada prototipa vetrogeneratora VTG1</i></td>
</tr>
</table>
<?php include 'foother.php'; ?>
</body>
</html>