[PHP] Retrieve HTML page

2001-02-01 Thread Jared Howard
I've been looking through the manual but I keep on missing the function or it doesn't exist. I need to know if there is a way to get a specified HTML page (as if you were to go to the page by typing in the url in your browser) and either turn it into a string or array or something that I would be

Re: [PHP] Retrieve HTML page

2001-02-01 Thread Mark Green
http://snoopy.sourceforge.net/ very cool class for retrieving remote webpages even supports cookies and HTTPS (using cURL) ^^@rk Jared Howard wrote: I've been looking through the manual but I keep on missing the function or it doesn't exist. I need to know if there is a way to get a

Re: [PHP] Retrieve HTML page

2001-02-01 Thread James, Yz
In addition to what's been mentioned, check out the : readfile, fread and fgets functions... James. -- 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:

Re: [PHP] Retrieve HTML page

2001-02-01 Thread Kif
something like this perhaps ? $remotefile = file($remote_file_url); $file_contents = join( '', $remotefile); Cheers Kif - Original Message - From: "Jared Howard" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 01, 2001 11:03 PM Subject: [PHP] Retrieve