Re: [PHP] Including a REMOTE FILE using include (php function)

2002-01-15 Thread Jimmy
Hi louie, > Im trying this little example of mine, Im trying to include > a file from a remote webserver but could not possibly get > it to work.. could be because the url fopen wrapper is disabled. check the value of this setting in your php.ini file: allow_url_fopen -- Jimmy ~

[PHP] Including a REMOTE FILE using include (php function)

2002-01-15 Thread louie miranda
Im trying this little example of mine, Im trying to include a file from a remote webserver but could not possibly get it to work.. Here is the written code: ### A WORKING CODE // LOCAL FILE ### ### DID NOT WORK // REMOTE FILE http://192.168.129.103/noc/chikkaps.txt";; include($file); ?> ###