Re: [PHP] Submit buttons

2003-02-25 Thread Rick Emery
> Sent: Tuesday, February 25, 2003 2:25 PM Subject: Re: [PHP] Submit buttons Yes, you can. Simply give the buttons differnt names: in the PHP script: extract($HTTP_POST_VARS); is( isset($submit1) ) { } else if( isset($submit2) ) { } - Original Message - From: "Greg" &

Re: [PHP] Submit buttons

2003-02-25 Thread Rick Emery
Yes, you can. Simply give the buttons differnt names: in the PHP script: extract($HTTP_POST_VARS); is( isset($submit1) ) { } else if( isset($submit2) ) { } - Original Message - From: "Greg" <[EMAIL PROTECTED]> To: <> Sent: Tuesday, February 25, 2003 2:11 PM

RE: [PHP] Submit buttons

2003-02-25 Thread Cal Evans
Sent: Tuesday, February 25, 2003 2:11 PM To: [EMAIL PROTECTED] Subject: [PHP] Submit buttons Is there any way that I can have a form submit to different pages depending on the submit button that is pressed? Thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Submit buttons

2003-02-25 Thread Greg
Is there any way that I can have a form submit to different pages depending on the submit button that is pressed? Thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php