我在具有不同提交按钮的页面中有三个表单,并且所有 HTML 都已正确关闭。所有表单都有不同的值..现在问题是当我按下任何表单的提交按钮以在数据库中存储值时..另一个表单字段为空..我怎样才能阻止它们停止它们。当我按下提交按钮时我想要任何形式的只有这些表单值在数据库中提交..其他表单字段不会为空..我该如何解决这个..我已经完成了像这样的单个表单的编码
<form class="form" method="POST" name="pool">
<label for="name1">Ist Player Name</label>
<input type="text" name="fname" id="fname" />
<label for="name2">2nd Player Name</label></td><td><input type="text" name="sname" id="sname" />
<label for="stime">Start Time</label>
<input type="text" name="stime" id="stime"
<label for="stime">End Time</label>
input type="text" name="etime" id="etime" />
<input type="submit" value="Confirm" name="pool" id="pool" />
</form>
与第 2 和第 3 形式相同 .name 是所有形式的变化..和这样的形式的 php 编码
<?php
$con = mysql_connect("localhost","root","");
mysql_select_db("snookar", $con);
if(isset($_POST['pool']))
{
/* all procees to save record */
}
then 2 nd form
if(isset($_POST['snooke']))
{
/* all procees to save record */
} and so on...
现在我怎么能做到这一点只提交指定的表单值并且另一个表单不为空......