Hi All
Believe it or not I have a problem with a variable
If I place this code on one sever
<?
$var = "This is a test";
include "http://www.otherserver.com/test.php";
?>
and I place test.php on another server, that has this code
<?
echo $var
?>
Stupid question : Why doesn't this work and how would I get it to work ?
Thanks in advance