2 回答
TA贡献1804条经验 获得超2个赞
您需要做的就是循环数组,然后使用索引访问所有其他值子数组值。我还使用了正确的准备和绑定机制来避免SQL 注入
$stmt = $link->prepare("INSERT INTO table (name,subtotal,holdback,total) VALUES (?,?,?,?)");
foreach ($array[0] as $idx => $payment) {
$stmt->bind_param('sdsd', $payment,
$array[1][$idx],
$array[2][$idx],
$array[3][$idx]
);
$stmt->execute();
}
TA贡献1799条经验 获得超9个赞
一些代码开始,使用准备好的语句来防止 SQL 注入:
$stmt = $link->prepare('INSERT INTO table(name,subtotal,holdback,total) VALUES (?, ?, ?, ?)');
foreach ($array[0] as $key => $value) {
$stmt->bind_param('ssss', $value, $array[1][$key], $array[2][$key], $array[3][$key]);
$stmt->execute();
}
- 2 回答
- 0 关注
- 97 浏览
添加回答
举报