|
|
if ($handle = opendir('./gfx/')) {
//echo "Directory handle: $handle \n";
echo "Verejne pristupne adresare: \n ";
$i=1;
while (false !== ($file = readdir($handle))) {
$subor = explode(".",$file);
if($subor[0] && !$subor[1]) {
echo "$i) $subor[0] \n";
$i++;
}
}
closedir($handle);
}
?>
|
|