Skip navigation.

Geeks and God Live at Mogulus

Also, we have an IRC channel at FREENODE #geeksandgod





// $filelist = explode("\n",`find .|sort`);
$dirpath = "./files/2008gandg/videos/";
$dh = opendir($dirpath);
while (false !==($file = readdir($dh))) {
$files[] = $file;
}
sort($files, SORT_STRING);
foreach ($files as $file) {
//Don't list subdirectories
if (!is_dir("$dirpath/$file")) {
//Truncate the file extension and capitalize the first letter
echo "". htmlspecialchars(ucfirst(preg_replace('/\..*$/', '', $file))) ."
";
}
}
?>