Will,
I tried this:
script 1:
<?php
session_start();
$fileFlag = false;
session_register(SfileFlag);
?>
and script 2:
<?php
session_start();
?>
both placed at the top. Maybe I forgot to mention that my script run simultanesly and script 2 depends on script 1. Well, when I run it like this, script 2 runs first, when it is done, script 1 start, which is not what i want.
Other ways to do this...could I make a static class that has just 1 variable?
V