I have two vars running on an external site and I am calling the script from another url.
How can I get these vars from one external script in my other script?
Example: MyVars.php
<?
$One = "This is one";
$Two = "This is two";
?>
Script on another server: GetVars.php
<?
include 'http://www.MySite.com/MyVars.php';
echo $One . $Two;
?>
The vars are not showing up on the second site. Is there a way I can access them?
Thanks -Ed