|
//open text file for the event this month
$filename = "event_std.txt";
$i=1;
$fp = fopen($filename, "r") or die("Couldn!|t open $filename");
while(!feof($fp))
{
$line = fgets($fp);
if (($i % 2)== 1)
{
print "";
print "$line";
print " ";
}
else
{
print "";
print "$line";
print " | | ";
}
$i++;
}
fclose($fp);
//closing the text file
?>
|
|
|
|
|
|
|