1 Commits

Author SHA1 Message Date
ef777eb779 register 2025-10-08 13:33:14 +02:00
3 changed files with 1 additions and 20 deletions

View File

@@ -13,5 +13,4 @@
<a href="/wiki/">wiki</a> <a href="/wiki/">wiki</a>
<a href="/git/">git</a> <a href="/git/">git</a>
<a href="/register.php">dołącz</a> <a href="/register.php">dołącz</a>
<a href="/users.php">użytkownicy</a>
</header> </header>

View File

@@ -85,3 +85,4 @@ Poniższy formularz trafi do naszych administratorów, którzy go ocenią. Potra
} }
?> ?>

View File

@@ -1,19 +0,0 @@
<?php
include 'header.php';
?>
<article>
Lista użytkowników i linki do ich blogów
<ul>
<?php
$host=htmlspecialchars($_SERVER['SERVER_NAME']);
//$host="";
foreach (scandir("/home/") as $file) {
if (in_array($file, array('.', '..'))) continue;
echo "<li><a href="/~$file">~$file</a></li>";
}
?>
</ul>
</article>