Is it possible to have a page that does not reset the value of a variable. What I have is:
$variable=some function;
more code that affects the value of the variable;
and eventually the page goes back to the beginning, but I want the value stored in $variable at the end of the previous run to still be stored in $variable, is this possible. The way that I was thinking of doing it was by trying to put the value of $variable in something like a global variable.