| 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/meteo/ |
Upload File : |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="15" />
<title>Untitled Document</title>
</head>
<style>
.box {
width: 220px;
font-family: Verdana;
font-size: 24px;
color: #1E88E5;
font-weight: bold;
text-align: center;
}
.table-format {
font-family: Verdana;
font-size: 28px;
color: #1E88E5;
font-weight: bold;
text-align: center;
}
.table-format2 {
font-family: Verdana;
font-size: 16px;
color: #0D47A1;
font-weight: bold;
text-align: left;
}
.center {
margin-left: auto;
margin-right: auto;
width: 500px;
text=align: center;
}
.box1 {
width: 250px;
background: #BBDEFB;
color: blue;
}
.box2 {
width: 250px;
background: #90CAF9;
color: blue;
}
.box3 {
width: 250px;
background: #C8E6C9;
color: green;
}
.box4 {
width: 250px;
background: #A5D6A7;
color: green;
}
</style>
<body style = "text-align: center; background-color: beige;"></body>
<body>
<h1 font-family = "Verdana" font-size = "28px" font-weight = "bold" align = "center">METEOROLOŠKA STANICA</h1>
<div class = "center">
<table class = "table-format2">
<tr>
<?php
$grad_loc = $grad[0];
$obj_loc = $objekat[0];
$geo_loc = $geocoord[0];
echo "<td class = 'box3'>";
echo "Lokacija: ";
echo "</td>";
echo "<td class = 'box1'>";
echo $grad_loc;
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td class = 'box4'>";
echo "Naziv objekta: ";
echo "</td>";
echo "<td class = 'box2'>";
echo $obj_loc;
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td class = 'box3'>";
echo "Geografske koordinate: ";
echo "</td>";
echo "<td class = 'box1'>";
echo $geo_loc;
echo " </td>";
echo "</tr>";
echo "<tr>";
echo "<td class = 'box4'>";
echo "Nadmorska visina [m]: ";
echo "</td>";
echo "<td class = 'box2'>";
echo $altitude;
echo " </td>";
echo "</tr>";
echo "<tr>";
echo "<td></td>";
echo "</tr>";
echo "</table>";
echo "</div>";
?>
</body>
</html>