Je moet ingelogd zijn om te stemmen.
<?php if($handle = opendir("map/naar/dir")) { while(($read = readdir($handle)) !== false) { if ($read != "." && $read != ".."){ echo $read."<br>\n"; } } closedir($handle); } ?>