Monty wrote:

>This is probably more of an HTML question... Is there a way to pass
>variables to another page via POST instead of via the URL?
>

Yes.

<form action="another_page.php" method="post">
... (form fields here) ...
<input name="button_name" type="submit" value="Button Text">
</form>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to