Compare commits

..

No commits in common. "5ce36803b8c88fa0b45a1253e7fd7b8dee026b30" and "ef777eb7793dff36009b66ab2f850b10ed96e1b0" have entirely different histories.

2 changed files with 0 additions and 20 deletions

View File

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

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>