我在php中有一个MySQL数据库和表单。
当用户提交详细信息时,我已成功更新到MySQL数据库。
现在我有一个问题。
我在同一网页中有5个具有相同字段的表单。现在,用户提交所有5个表单并单击“提交”按钮,然后将该详细信息保存到MySQL数据库中。
我知道代码,如果用户提交单个表单如何保存到数据库中。但我需要提交多个具有相同字段的表单,如何保存在数据库中。
如果用户提交单一表单,我的代码就是这样。
<?
if( $_POST )
{
$con = mysql_connect("xx","xx","xx");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("xx", $con);
$users_id = $_POST['id'];
$users_name = $_POST['name'];
$users_Telephone = $_POST['Telephone'];
$users_E_mail = $_POST['E_mail'];
$users_country = $_POST['country'];
$users_visa_categeory = $_POST['visa_categeory'];
$users_other_category = $_POST['other_category'];
$users_passport_no = $_POST['passport_no'];
$users_remarks = $_POST['remarks'];
$users_date = $_POST['date'];
$query = "
INSERT INTO `xx`.`xx` (
`id`,
`name`,
`Telephone`,
`E_mail`,
`country`,
`visa_categeory`, `other_category`, `passport_no`, `remarks`, `date`
)
VALUES ('$users_id', '$users_name', '$users_Telephone', '$users_E_mail',
'$users_country', '$users_visa_categeory', '$users_other_category', '$users_passport_no', '$users_remarks', '$users_date'
);";
mysql_query($query);
echo"<br /><br />";
echo" &n bsp; ";
printf(" <p> &nbs p;
& nbsp;
Your Reference id is %d\n (Please note this reference id for future)<p>", mysql_insert_id());
mysql_close($con);
}
?>
<table style="
background-color:#999;
color:#000;
text-align: left; width:500px; margin-left:250px; margin-top:20px;" border="1">
<tr>
<td style="color:#fff; text-indent:10px">Your Name:</td>
<td style="color:#00F; text-indent:10px"><?php echo $_POST["name"]; ?></td>
</tr>
<tr> <td style="color:#fff; text-indent:10px">Telephone:</td><td style="color:#00F; text-indent:10px"><?php echo $_POST["Telephone"]; ?> </td>
<tr> <td style="color:#fff; text-indent:10px">E_mail:</td><td style="color:#00F; text-indent:10px"><?php echo $_POST["E_mail"]; ?></td> </tr>
<tr> <td style="color:#fff; text-indent:10px">Country:</td><td style="color:#00F; text-indent:10px"><?php echo $_POST["country"]; ?> </td> </tr>
<tr> <td style="color:#fff; text-indent:10px">Visa_Categeory:</td><td style="color:#00F; text-indent:10px"><?php echo $_POST["visa_categeory"]; ?></td> </tr>
<tr> <td style="color:#fff; text-indent:10px">Other_Category:</td><td style="color:#00F; text-indent:10px"><?php echo $_POST["other_category"]; ?> </td> </tr>
<tr> <td style="color:#fff; text-indent:10px">Passport_No:</td><td style="color:#00F; text-indent:10px"><?php echo $_POST["passport_no"]; ?></td> </tr>
<tr> <td style="color:#fff; text-indent:10px" valign="top">Remarks:</td><td style="color:#00F; text-indent:10px"><?php echo $_POST["remarks"]; ?> </td> </tr>
<tr> <td style="color:#fff; text-indent:10px" valign="top">Date:</td><td style="color:#00F; text-indent:10px"><?php echo $_POST["date"]; ?> </td> </tr>
</tr>
</table>
答案 0 :(得分:1)
您应该使用特殊名称命名每个“表单”输入。一个是为每个输入添加一个数字,以便它检测您正在谈论的是哪种形式。
然后,只使用逗号连接多个VALUES
:
<?
// You may know the form count?
define('NUM_FORMS', 5);
if( $_POST )
{
$con = mysql_connect("xx","xx","xx");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("xx", $con);
$userBlocks = array();
for ($i=0; $i < NUM_FORMS; $i++) {
$users_id = $_POST['id'.$i];
$users_name = $_POST['name'.$i];
$users_Telephone = $_POST['Telephone'.$i];
$users_E_mail = $_POST['E_mail'.$i];
$users_country = $_POST['country'.$i];
$users_visa_categeory = $_POST['visa_categeory'.$i];
$users_other_category = $_POST['other_category'.$i];
$users_passport_no = $_POST['passport_no'.$i];
$users_remarks = $_POST['remarks'.$i];
$users_date = $_POST['date'.$i];
// Add each 'user query' into an array
$userBlocks[] = "('$users_id', '$users_name', '$users_Telephone', '$users_E_mail',
'$users_country', '$users_visa_categeory', '$users_other_category', '$users_passport_no', '$users_remarks', '$users_date'
)";
}
if(!empty($userBlocks))
{
$query = "
INSERT INTO `xx`.`xx` (
`id`,
`name`,
`Telephone`,
`E_mail`,
`country`,
`visa_categeory`, `other_category`, `passport_no`, `remarks`, `date`
)
VALUES ".implode(", ", $userBlocks).";";
// Then implode the queries split by commas
mysql_query($query);
}
答案 1 :(得分:0)
您不应该同时提交多个表单。我能想到的唯一方法是使用AJAX和Javascript,无论如何都不是一个好的解决方案。
你应该寻找另一种方法来实现你想要的。看来你的方式错了。
只需多次调用insert
语句,就可以在表中插入多行。
您可以循环执行此操作,例如:
//getting the connection...
$conn = $this->_db->getConn();
for($a = 0; $a<5; $a++){
$query = $conn->prepare('Insert into reservation (name, idUser, text) values ('a', '132', 'cccc')');
$query->execute();
}
答案 2 :(得分:-1)
您只能从页面一次提交一个表单。
您需要为表单元素提供一个命名方案,以便在提交时可以提取单个表单元素。
例如。像这样给出HTML
<form method=post>
<input name="formA_Name">
<input name="formA_Passport">
....
<input name="formB_Name">
<input name="formB_Passport">
....
<input name="formB_Name">
<input name="formB_Passport">
....
<input type=submit>
</form>
您提交到如下所示的php页面并提取您想要的内容。
//Pull details out into seperate arrays
foreach ($_POST as $Key = > $Value)
{
list($Form, $KeyName) = explode('_', $Key);
$forms[$Form][$KeyName] = $Value;
}
//This creates arrays like this
// ['FormA']['FormA_Name'] = 'Name Submitted'
// ['FormB']['FormB_Name'] = 'Name Submitted'
然后,您可以使用此结构提交到您的数据库。