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).
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…