Re: Sending a variable



In foo.php I do (essentialy)
That's not the only thing he missed.
Notice the word essentialy ;-)

Now, anough teasing, let's help the OP:
$a000 & $Vtempfname will only be available in bar.php if register_globals
is enabled. This would not be a wise choice. To access the variables use
$_GET['a000'] & $_GET['Vtempfname'].
Oh my... I'm going to set fire to my old PHP programming book and get me one
that covers PHP 5.
Thanks!
.