我做了一个非常简单的钓鱼游戏。用户必须买盆,很容易 现在买盆的形式看起来非常简单
title1 - box1 - submit_buttom1
title2 - box2 - submit_buttom2
现在,当用户将信息输入box1
然后他们点击"输入"在那里键盘上submit_button1
被激活,脚本就会运行
但是当用户将信息输入box2
并点击&#34时,输入"在那里键盘上,submit_button1
被激活
现在我可以理解这听起来很混乱,所以我把它放在网上
这是我的剧本
echo "<table border=\"0\" cellspacing=\"3\" cellpadding=\"3\" >\n";
echo "<form method=\"post\" action=\"index.php\">\n";
echo "<tr><td>North Pot</td><td><input type=\"text\" name=\"northpot\"></td>\n";
echo "<td colspan=\"2\" align=\"center\"><input type=\"submit1\" name=\"submit1\" value=\"Buy\"></td></tr>\n";
echo "</forum></table>";
echo "<table border=\"0\" cellspacing=\"3\" cellpadding=\"3\" >\n";
echo "<form method=\"post\" action=\"index.php\">\n";
echo "<tr><td>South Pot</td><td><input type=\"text\" name=\"southpot\"></td>\n";
echo "<td colspan=\"2\" align=\"center\"><input type=\"submit2\" name=\"submit2\" value=\"Buy\"></td></tr>\n";
echo "</forum></table>";
如果您需要更多信息,请说明
答案 0 :(得分:5)
您应该将</forum>
更改为</form>
答案 1 :(得分:4)
您正在生成无效的HTML。表单不能是<table>
的子元素或<tr>
的父元素。它也拼写为form
而不是forum
。
您的浏览器可能正在恢复此错误,方法是将表单元素移动到表后,但将所有表单控件保留在表中。
使用validator。
答案 2 :(得分:1)
你的结束表格,标记法术论坛。应为</form>