PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
echo file_get_contents('http://localhost/index.php'); // it output error of
Warning: file_get_contents(http://localhost/index.php) [function.file-get-contents]: failed to open stream: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. in C:\www\Apache2\htdocs\test.php on line 2
// but when i try
echo file_get_contents('http://www.google.com/') // it works
my http://localhost/index.php just content a string "<h1> It works</h1>"
Does anybody know why ? I thought my firewall is blocking the connection, so when I disabled my firewall, it still not working. Thanks for any of your help.
As it says, "connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond."
Thanks for the two prompt reply, I never realize that actually the solutions is so easy until i never thinking of trying that.
It works when the url is without http://localhost/
echo file_get_contents('index.php');
Thanks...so happy.