variable from one file to the other


How can I send that variable from one file to the other?I have a variable called $url that is defined in the first file. now i want to use that variable in the second file.

Any advice

you could save the variables as Session variables

You could put your variables in vars.php, and then

include(“vars.php”);

At the top of every page you want the variables in.