Please bare with my noobish question... Is there any way to make a variable available to other scripts without using the include or $_post function :
file1.php $variable = "testing";
file2.php echo $variable;
Thank you in advanced...
you can pass them through the querystring;
<a href="page2.php?foo=bar>bar</a>
then retrieve them using $_GET['foo'];
or, you might want to look into sessions.
Ye do this:
$_SESSION['variable'] = "One two three";
and then on php2.php
echo $_SESSION['variable'];
would echo
"One Two Three"
Oh ! How I love this site, thank you very much fellow Programmers...