you have this:
<input type="submit" value="b1" name="action" />

<input type="submit" value="b2" name="action" />

change the name of the buttons to b1 and b2, respectively, and give them
some non-null value (as you have it)
Then in action.php you will have the following code:
if ($b1) {
redirct to script1
}
elseif ($b2) {
redirct to script2
}

/*Either b1 OR b2 will have a value, not both, and use header() to redirect
the sctipt*/




"Sonal Patel" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hello,
>
> I am very new to this group.
>
> I have a very simple question.
> Please look at this form,
> http://antriksh.com/resources/2_submit_button_form.shtml
>
> here I want to change the echo statement in the script "action.php" to
> redirect it to another script.
>
> ie, I want to change the form action dynamically.  How can I modify
> this form to do so?
>
> I tried few PHP tricks that did not work for me.  So I am asking this
> questions to anyone who may be able to help.
>
> Thank you ,
> Sonal
>



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

Reply via email to