Re: Read a website with Fopen()



Read a website with Fopen()

You don't want to do that as it will not work in a sane php setup
(allow_url_fopen should be disabled).

Use fsockopen and the HTTP Protocol manually or use a class like Pears HTTP.
.