Insert multiple rows to database from HTML form using MySQLi(使用 MySQLi 从 HTML 表单向数据库插入多行)
问题描述
我正在尝试制作一个使用数组的表单,因此一旦它被提交和处理,多行就会插入到我的数据库中.我的主程序比下面更复杂,但我无法让它工作,所以我决定创建一个简单的小程序来更好地理解基本语法,然后将这些技术应用于主程序.我已经使用折旧的 MySQL 让它工作了,但是将它转换为 MySQLi 会导致问题,我想知道我是否可以获得帮助.
I'm trying to make a form that uses arrays so once it is submitted and processed multiple rows get inserted into my database. My main program is more complex than below but I could not get it working so I decides to create a small simple program to understand the basic syntax better then apply the techniques to the main program. I have got it to work using the depreciated MySQL but converting it to MySQLi is causing problems that I wonder if I can get help with.
我的表单是这样设置的
<html>
<title>multi row insert test form</title>
<body>
<table>
<form action="process2.php" method="post">
<tr>
<th>forename</th>
<th>surname</th>
<th>level</th>
</tr>
<tr>
<td><input type="text" name="fname[]"></td>
<td><input type="text" name="sname[]"></td>
<td>
<select name="level[]">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
</td>
</tr>
<tr>
<td><input type="text" name="fname[]"></td>
<td><input type="text" name="sname[]"></td>
<td>
<select name="level[]">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
</td>
</tr>
<tr>
<td><input type="submit" name="submit" value="Submit"></td>
</tr>
</form>
</table>
</body>
</html>
使用MySQLi更新数据库的php页面如下
and the php page that updates the database using MySQLi is as below
<?php
include 'dbconnect2.php';
$fname = $_POST['fname'];
$sname = $_POST['sname'];
$level = $_POST['level'];
if ($stmt = $mysqli->prepare("INSERT INTO people (fname, sname, level) values (?, ?, ?)")) {
$stmt->bind_param('ssi', $fname, $sname, $level);
for ($i=0; $i<2; $i++)
{
$fname[$i] = $fname;
$sname[$i] = $sname;
$level[$i] = $level;
$stmt->execute();
echo "Done";
}
$stmt->close();
}
?>
推荐答案
或者,减少重写现有代码的次数:
Or, with less rewriting your existing code:
$fnames = $_POST['fname'];
$snames = $_POST['sname'];
$levels = $_POST['level'];
$stmt = $mysqli->prepare("INSERT INTO people (fname, sname, level) values (?, ?, ?)")
for ($i=0; $i<count($fnames); $i++) {
$fname = $fnames[$i];
$sname = $snames[$i];
$level = $levels[$i];
$stmt->bind_param('ssi', $fname, $sname, $level);
$stmt->execute();
}
echo "Done";
$stmt->close();
这篇关于使用 MySQLi 从 HTML 表单向数据库插入多行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 MySQLi 从 HTML 表单向数据库插入多行
基础教程推荐
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01