use
$filearray =
file("http://www.yourstite.com/yourscript.php?some_vars=whatever");
then
$body = join (" ",$filearray);
mail($to $subject,$body);
or something like that. Maybe readfile() may be of use here to. You just
want to read the page in as a string, so make sure that you use some
method of HTTP GET to grab the file - then you will have the html source
seen by the browser. Put that into a string and mail it.
--
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]