--- cj <[EMAIL PROTECTED]> wrote:
> Is it possible to have two buttons and have different
> actions for each button in the same form?

No, because the action belongs to the form, not the submit
buttons (which is why action is an attribute of form).

However, you can use different names and values for the
submit buttons, so that you can tell which was pressed on
your receiving page. This way you can act accordingly,
which is probably what you wanted to know.

Hope that helps.

Chris

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

Reply via email to