Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

i have a this button

<input type="button" name="continue" id="continue" value="Continue"> 

in php we use if($_POST['continue']) to edit the action of the submit button but only if its type is "submit". what if its type is "button"? how can i edit the action of that button?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
938 views
Welcome To Ask or Share your Answers For Others

1 Answer

If the type of the button is "button" instead of "submit", you will need another button to submit the form. consider this:

<input type="hidden" name="continue" id="continue" value="Continue" />
<input type="submit" name="go" id="go" value="Next" />

In that way, you can modify the value of the $_POST['continue'] without affecting the User Interface (UI).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...