I'm trying to fopen a file this way:
$handle = fopen("http://localhost/test.html", "r");
but tha page remains "loading .." for 30 seconds and then goes in
timeout.
However I can open that file this way:
$handle = fopen("c:\web\t est.html", "r");
What is the difference and how can I make the first instruction to
work?
Best regards.
F.
$handle = fopen("http://localhost/test.html", "r");
but tha page remains "loading .." for 30 seconds and then goes in
timeout.
However I can open that file this way:
$handle = fopen("c:\web\t est.html", "r");
What is the difference and how can I make the first instruction to
work?
Best regards.
F.
Comment