how do I get the text from my own file? I only have this:
<?
echo "Advisories<BR>";
$thecontent=join('',file("http://domain/cgi-bin/weatheradvisories.pl"));
if(eregi("Statement(.*)<p>",$thecontent,$content)) {
for($i=0; $i < count($content); $i++) {
echo $content[$i];
}
}
?>
It only appears blank! What's wrong?
-Steven