如果所有输入/主题都是一种形式,那就没关系了吗?
我不知道怎么做,但我想做的就是当我完成一些成绩后,我会选择是否提交作为第一季度,第二季度第三季度或第四季度。
<form action.php" method="POST">
<input type="text" name="english">
<input type="text" name="Math">
<input type="text" name="Science">
<input type="text" name="History">
<a href="1st_quarter.php">1st quarter </a>
<a href="2nd_quarter.php">2nd quarter </a>
<a href="3rd_quarter.php">3rd quarter </a>
<a href="4th_quarter.php">4th quarter </a>
</form>
答案 0 :(得分:2)
您可以使用此http://codepen.io/CookieMonsta/pen/xgYaLa并添加一些PHP以在某处发送信息。例如:电子邮件,工作表......
<form action="action.php" method="POST">
<input type="text" name="english">
<input type="text" name="Math">
<input type="text" name="Science">
<input type="text" name="History">
<input type="submit" name="button_1" value="First">
<input type="submit" name="button_1" value="Second">
<input type="submit" name="button_1" value="Third">
<input type="submit" name="button_1" value="Fourth">
</form>