Oberon
Some oberon sources from my first year at UIA (now known as UA).
";
echo "File | Description |
";
while($file = readdir($dir)) {
if($file!=".." && $file!="."){
if(substr($file,-5)!=".info"){
echo "
$file | ";
$info=@file($dirname."/".$file.".info");
echo "";
for($i=0;$i0) echo " ";
echo " ".$info[$i];
}
echo " | ";
}
echo "
";
}
}
echo "";
closedir($dir);
?>