I have the following PHP script.
<?
$file = "http://www.inman.com/inf/homelog/index.asp";
$open = fopen($file, "r");
$search = fread($open, 20000);
fclose($open);
$blockcode = ereg("BELOW********************** -->\n(.*)<!-- *", $search, $urls);
$urls[1] = str_replace("<br>", "\n", $titles[1]);
If ($file2=fopen("newstories.txt", "a")) {
fputs($file2,"$urls[1]");
}
?>
I know I can't setup a normal crontab for this to execute at the 30 minute mark of every hour, so I was wondering if anyone know what lines I would be if I were to use lynx. I unfortunately don't have wgets nor links.
Thanks in advance.