Re: [PHP] include "http"

2002-10-15 Thread Maxim Maletsky
In order to use your PHP script (authentication features etc) you need to have the all files within the same server. As of including files, virtually - yes, yo can use include for remote files, but you will not be able to execute the remote PHP code. You will only include the output. ie: include

[PHP] include "http"

2002-10-15 Thread Dan Healy
Hi, I wrote a program to authenticate users. I would like to place a few lines at the top a webpage that would call this program. Some web pages will be on the same server as the authentication program, others will not. Can I use include/require of do I need to use fopen? The program returns

[PHP] include "http" problem

2001-11-20 Thread Mike Webby
include ("http://www.somesite.com/somepage.html";); Worked perfect on our unix box and our win98 machines but when we installed PHP on our Windows server it no longer worked and tottaly ignored the include unless we used the path instead like. include ("somepage.html"); [EMAIL PROTECTED]