says...
echo $Querybox;Quote:> Read the PHP documentation. There is only one thing that does not make
> complete sense to me. How does one get the posted and queried variables?
> Example:
> page1.html has a form as follows
> <form action="GetMe.php3" method="post">
> <input type=text name="Querybox">
> </form>
> How, on my GetMe page, do I retrieve the value for Querybox?
I think you are thinking too much. All GET, POST, Cookie and environment
variables are available automatically in the PHP symbol table. You don't
have to do anything.
-Rasmus