Take a look at the changes I made to your original post; this assumes that
the file isn't there until results are posted - hope that's the case ;)
--Toby
> <?
if ($file = fopen("http://www.ourheadoffice.co.nz/results/race01.html",
"r")) {
> $rf = fread($file, 200000);
> $grab = eregi("<tr bgcolor=\"#CCFF99\">(.*)</html>", $rf, $printing);
> fclose($file);
> echo "<table><tr>";
> echo $printing[1];
} else {
echo "Results will be available after the event.";
}
> ?>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]