我目前正在通过 mysql / php 生成表单。我有超过 1500 个具有唯一值的输入,我想将它们插入到 mysql 表中(1 个值/行)
我正在以这种方式创建表单:
echo "<input type='text' name='combination[]' value='justsometext". $row['name'] ."'><br />";
我有大约 1500 个这样的输入,我想将它们插入一列,我该怎么做?
我正在使用以下代码插入,但它只插入 0 而不是实际值:
foreach ($_POST['combination'] as $combination) {
$sql="INSERT INTO alphabet_combination (combination)
VALUES
('$combination')";
}
if (!mysqli_query($con,$sql))
{
die('Error: ' . mysqli_error($con));
}