Well, it's quite easy: Just write a php-script and start it with php myscript.php. Thats all.
You could fetch a web-page with fopen:
$fp = fopen("http://www.mydomain.com/", "r");
$line = "";
while(!feof($fp))
{ $line .= fgets($fp, 4096);
}
fclose($fp);
print $line;
If you are new in programming, I think PHP is easyier to learn than Perl.
Martin
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

