www/includes/users.php

14 lines
446 B
PHP
Raw Normal View History

2019-07-07 01:39:54 +00:00
<?php
print "<!-- Begin autogen userdir list -->";
print "<ul style='list-style: none; margin-left: -40px;'>";
foreach (glob("/home/*") as $user):
if (is_dir($user . "/public_html") && (file_exists($user . "/public_html/index.html") || file_exists($user . "/public_html/index.php")))
{
$user = basename($user);
print"<li><a href='$site_root/~$user/'>~$user</a></li>";
}
2019-07-07 01:39:54 +00:00
endforeach;
2019-07-07 01:47:47 +00:00
print "</ul></div>
<!-- End Autgen userdir list -->";
2019-07-07 01:39:54 +00:00
?>