Entries:
";
/* This is the correct way to loop over the directory. */
while (false !== ($entry = readdir($handle))) {
//if ($entry != "." && $entry != "..") {
echo $entry."
";
//}
}
closedir($handle);
}
/*
echo "
";
echo "The above output is generated by the code below:
";
highlight_file( __FILE__ );
*/
?>