Instead of using readfile(), try using the file() function.
// Get php.net and store it in an array.
$theFile = file("http://www.php.net");
// Convert the array to one long string.
$theFile = implode("",$theFile);
// And output the file.
echo $theFile;
If you're trying to do this with an image, you need to use the
Header() function.
JVD> How can I read some webpage through a proxy in PHP.
JVD> I wan't to use the function readfile(http://www.php.net/) but I get an
JVD> host_connect error.
JVD> --
JVD> A good programmer is someone who looks both ways before crossing a one-way
JVD> street. - Doug Linder
--
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]