Re: Including a .php file from another server?
Available news archives: comp.lang.tcl - comp.lang.python - comp.security.firewalls - sci.crypt - comp.lang.php - comp.lang.javascript
Google
 
Web news.hping.org


comp.lang.php archive

Re: Including a .php file from another server?

From: Jerry Stuckle <jstucklex@attglobal.net>
Date: Sun Sep 25 2005 - 05:14:29 CEST

hntgzr wrote:
> I am trying to include a function in a .php file on a different server from
> the main .php files.
>
> I am using:
>
> include_path=http://www.anotherserver.com/foldername;
> include(http://www.anotherserver.com/foldername/phpfiletocall.inc);
>
> The .inc file is php formatted. Variables are passed to it (not via GET or
> POST though) and returned using return(variablenames, etc);
>
> But for some reason it doesn't appear to work properly.
>
> Am I correct in using the .inc extension?
> Are the commands above correctly written?
>
> Basically I am trying to use the fsockopen function in a .php file on
> another server where I know it works and return the results to a server
> where the fsockopen command doesn't work.
>
> Any help or guidance would be greatly appreciated.
> TIA
> h
>
>

When you access your php file this way, it has already been parsed by
the web server. It's just like accessing it from your browser.

-- 
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Received on Tue Oct 18 02:27:45 2005