我使用按钮的功能与超链接相同:
<form action="intro.html"><input type="submit" value="CLICK HERE TO ENTER" ></form>
这适用于静态链接,但不适用于 PHP $_GET 参数。
<form action="wrong_choice.php?stage=0"><input type="submit" value="Wrong Choice!" ></form>
单击该按钮将进入“wrong_choice.php”,但不会进入“wrong_choice.php?stage=0” 我该如何解决?
谢谢