The Darknet depends on peers (like you and me) to run their own lists of onion links for visibility, as search engines can't crawl onion websites like they do on the clearnet. This project is there to list people's lists of onion links so that you don't have to search those links yourself.
The more people join the Darknet Onion Webring, the more visibility darknet websites will be able to have over time, just like how it would be on the clearnet while keeping the decentralisation and censorship-resistance intact. Let's make it happen.
\n\n";
// Open a file
$file = fopen("links/webring.csv", "r");
// Fetching data from csv file row by row
while (($data = fgetcsv($file)) !== false) {
// HTML tag for placing in row format
echo "";
foreach ($data as $i) {
echo "" . htmlspecialchars($i)
. " | ";
}
echo "
\n";
}
// Closing the file
fclose($file);
echo "\n
";
?>