forked from tylda-public/main
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			358 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			358 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php 
 | 
						|
include 'header.php';
 | 
						|
?>
 | 
						|
<h1>> Users </h1>
 | 
						|
<article id="content">
 | 
						|
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>
 |