Source code
<style type="text/css">
body {font-family: Verdana; font-size: 12px;}
li.dir {list-style-image: url("dir.gif");}
li.file {list-style-image: url("file.gif");}
</style>
<?php
function dirtree($dir)
{
echo "<ul>";
$dh = opendir($dir);
while($file = readdir($dh))
{
if($file!="." and $file!="..")
{
if(is_dir($dir ."/" .$file))
{
echo "<li class=\"dir\">$file";
dirtree($dir ."/" .$file);
echo "</li>";
}
else
{
echo "<li class=\"file\"><a href=\"$dir/$file\">$file</a></li>";
}
}
}
echo "</ul>";
closedir($dh);
}
// dirtree("c:/");
echo "<h1>Source code</h1>";
highlight_file(__FILE__);
?>