Rabbi Finman has been teaching classes in Judaism for more than 30 years. These lectures were recorded live and are ongoing.
/* Get the name of the class to play */
$play = $_REQUEST['play'];
/* Open the classdata.txt file */
$classDataFile = fopen("/home/rabbifin/public_html/dev/admin/classdata.txt", "rb");
/* List the classes */
while (!feof($classDataFile)) {
$classline = fgetcsv($classDataFile, 256, "|");
if ($play == "") $play = $classline[1];
if ($play == $classline[1]) {
echo "
\n";
echo " Now playing: ".$classline[0]."
\n";
echo " \n";
echo "
\n";
} else {
echo " $classline[0]
\n";
}
/*
*/
}
/* Close the classdata.txt file */
fclose($classDataFile);
/*
echo "
\n");
echo " Listen live, Friday from 3:00 - 5:00p.m.
\n");
echo " Download Winamp if you need a player for the live radio show.
\n");
echo " Contact Herschel Finman for affordable advertising rates.
\n");
*/
?>