how would you use cross-script variables in php? Like, if you have script 1:
<?php
$A=15
include ("script_2.php")
?>
And then in script 2:
would this print the value "15", or would you have to do some kind of redefining of the variable?
I know this is a bad example, but holefully you get the idea.