darknet-lantern/www/moneronodes.php
2024-12-09 08:56:11 +01:00

50 lines
1.2 KiB
PHP

<!DOCTYPE html>
<html>
<body>
<head>
<title>Onion Uptime Checker</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" href="/favicon.ico">
</head>
<center>
<?php
require("/srv/onion-uptime/www/links.php");
?>
<h1>Onion Uptime Checker (WIP)</h1>
<h2>Monero Nodes (Last update: September 2024)</h3>
<p><u>Update Frequency:</u> every 3 hours</p>
<h3>Monero Nodes</h3>
<?php
echo "<center><table>\n\n";
// Open a file
$file = fopen("links/MoneroNodes.csv", "r");
// Fetching data from csv file row by row
while (($data = fgetcsv($file)) !== false) {
// HTML tag for placing in row format
echo "<tr>";
foreach ($data as $i) {
echo "<td>" . htmlspecialchars($i)
. "</td>";
}
echo "</tr> \n";
}
// Closing the file
fclose($file);
echo "\n</table></center>";
?>
</center>
</body>
</html>