I want to parse some information out of a html page. Currently I solve the problem like this:
header("Content-type: text/plain");
$this->pageSource = file_get_contents ($this->page);
header("Content-type: text/html");
$this->page is the url of the website. This works fine on XAMPP, but when I upload my script on my webserver, I get the following error message:
Warning: file_get_contents() [function.file-get-contents]: http:// wrapper is disabled in the server configuration by allow_url_fopen=0
Yani açıkçası benim webserver üzerinde bu işlevi yürütmek için izin değilim.
Yani benim sorunu çözmek için eşdeğer bir işlevi var?
Teşekkürler herhangi bir yardım için bir sürü.