Wondering how this could be accomplished...
remotepage.php
<?php
$x = hello;
?>
localpage.php
<?php
include 'http://www.domain.com/remotepage.php';
echo $x;
?>
So, basically, there is a variable on the remote page, which I have included in my local page, that I want to, lets say echo on localpage.php
how could this be done?
thanks
-Arron