F319 aneb studentský život na ČVUT
photo by - KREJCJAK -
//define the path as relative
$path = "/var/www/oktava/f319/";
//using the opendir function
$dir_handle = @opendir($path) or die("Unable to open $path");
//running the while loop
while ($file = readdir($dir_handle))
{
if($file != "." && $file != ".." && $file != "index.php")
{
echo "
";
echo "$file
";
}
}
//closing the directory
closedir($dir_handle);
?>