mirror of
http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/darknet-lantern.git
synced 2025-05-17 04:36:57 +00:00
lots of changes, cleaned up the PHP code
This commit is contained in:
parent
02a68bd648
commit
def88e90f5
8 changed files with 173 additions and 407 deletions
|
@ -14,36 +14,20 @@
|
|||
<?php
|
||||
require("header.php");
|
||||
?>
|
||||
<h1>Onion Uptime Checker (WIP)</h1>
|
||||
<h2>Monero Nodes (Last update: September 2024)</h3>
|
||||
<p><u>Update Frequency:</u> every 3 hours</p>
|
||||
|
||||
<main>
|
||||
<section class="container">
|
||||
<div class="column">
|
||||
<h3>Monero Nodes</h3>
|
||||
<?php DisplayCSVold("links/MoneroNodes.csv");?>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</main>
|
||||
|
||||
|
||||
<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>";
|
||||
?>
|
||||
|
||||
<?php
|
||||
require("webring.php");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue