Quote of the day ... [version 3]
".date("D M d Y")."";
$content = file('quotes.dat');
// count how many lines in the file
$numLines = count($content);
// generate a random number between 1 and $numLines
$line = rand(0, ($numLines-1));
// loop through all the lines
for ($i = 0; $i < $numLines; $i++) {
if ($line==$i) {
// get the data into an array
$data = explode("|", $content[$i]);
// print out the quote
echo "
";
echo htmlentities($data[0]);
echo "
";
echo "
$data[1] ($data[2])
";
}
}
?>