RE: [PHP] include through HTTP

2002-04-12 Thread Collins, Robert
Check the Note about 5 lines down on this page. http://www.php.net/manual/en/features.remote-files.php Note: You can't use remote files in include() and require() statements on Windows. Robert W. Collins II Webmaster New Orleans Regional Transit Authority Phone : (504) 248-3826 Email :

RE: [PHP] include through HTTP

2002-04-12 Thread Barýþ
Oh what a shame on me! Sorry and thank you... --- Collins, Robert [EMAIL PROTECTED] wrote: Check the Note about 5 lines down on this page. http://www.php.net/manual/en/features.remote-files.php Note: You can't use remote files in include() and require() statements on Windows. Robert W.

Re: [PHP] include through HTTP

2002-04-12 Thread Rasmus Lerdorf
Why do you want to include from localhost over HTTP? Sounds to me like you want to do: $foo='bar'; include $DOCUMENT_ROOT/folder/file.php; -Rasmus On Fri, 12 Apr 2002, Barýþ Mert wrote: What i want to do is : include(http://localhost/folder/file.php?foo=bar;); but it doesn't work. As you