hi
you can use this to pass variables
from one call of the script to a second.
the part behind the ? is passed
to your script as $argv[0]
best will be a short code example
for example if you want to pass 2 variables
$a="hello" and $b=12 through the url, you can
do it this way:
produce a link
script.php3?$a=hello;$b=12;
then at the beginning of the next execution
of your script you do something like
parse_str($argv[0]);
and you will have $a and $b set to the
former values.
of course this is just the principle way and
in no way secure or something.
Alex