gpt4 book ai didi

php - 单击即可清空所有三种形式

转载 作者:行者123 更新时间:2023-11-30 23:18:21 26 4
gpt4 key购买 nike

我在一个页面中有三个表单,每个表单都有不同的提交按钮,并且所有 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 形式相同。名称是所有形式的变化..和像这样的形式的 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...

现在我如何才能做到这一点只提交指定的表单值而另一个表单不为空...

最佳答案

您可以执行以下操作,

<form class="form" method="POST" name="pool1">
<!-- Form input fields -->
<input type="submit" value="Confirm" name="poolbtn1" id="poolbtn1" />
</form>

<form class="form" method="POST" name="pool2">
<!-- Form input fields -->
<input type="submit" value="Confirm" name="poolbtn2" id="poolbtn2" />
</form>

现在使用jquery提交表单,

$("#pool1").submit(function(e) {
//Do your task here
return false; //this will prevent your page from refreshing
}

$("#pool2").submit(function(e) {
//Do your task here
return false; //this will prevent your page from refreshing
}

关于php - 单击即可清空所有三种形式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16581262/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com