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

Categories

0 votes
935 views
in Technique[技术] by (71.8m points)

help in php button

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

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

1 Answer

0 votes
by (71.8m points)

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).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...