--- cj <[EMAIL PROTECTED]> wrote:
> The page that processes the form will have to work out
> which button got pressed?

Exactly.

For starters, use this bit of HTML/PHP code to help you see
what the browser sends you when the form is submitted (add
this to the receiving page):

<pre>
<? print_r($_REQUEST); ?>
</pre>

Alternatively, you can choose to output $_GET or $_POST
(instead of $_REQUEST) depending on which method you choose
for your form. This will show you how to identify which
button was pressed.

Good luck.

Chris

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

Reply via email to