I'm running off two different servers, php4 setup. One server runs ads to the other.
I'm using a template based forum, and I want to include the ads in the templates. But I'm having trouble pulling the variables from the ad site to the forum site.
I tried to include the file:
include("http:to.my.server");
On a stand alone page that works great. The templates require I plug a variable into the template.
I tried:
$myad = ("http:to.myserver");
Oviously, this didn't work. $myad is empty.
I know that calling it as a script or in i-frames is an option. calling it as a script conflicts with other jscript running. I-frames don't give a relative ease of use.
Is it possible to call and include from a remote file and pull the value or variables from it?
Ron