如何将数据数组插入数据库
这是我的代码 -
$things = mysql_real_escape_string(implode(',', $_POST['things']),$link);
$q = "INSERT INTO tblslider(src) VALUES ('".$things."')";
print_r($q);
$result = $mysqli->query($q) or die(mysqli_error($mysqli));
但我的查询正在生成 INSERT INTO tblslider(src) VALUES ('4368122.jpg,5440051.jpg,1047428.jpg')
但应该是 INSERT INTO tblslider(src) VALUES ('4368122.jpg'),('5440051.jpg'),('1047428.jpg')
这就是为什么它将其视为一条记录而不是三条记录。
here my code-
$things = mysql_real_escape_string(implode(',', $_POST['things']),$link);
$q = "INSERT INTO tblslider(src) VALUES ('".$things."')";
print_r($q);
$result = $mysqli->query($q) or die(mysqli_error($mysqli));
but my query is getting generatedINSERT INTO tblslider(src) VALUES ('4368122.jpg,5440051.jpg,1047428.jpg')
but it should beINSERT INTO tblslider(src) VALUES ('4368122.jpg'),('5440051.jpg'),('1047428.jpg')
thats why it is taking it as one record not three.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以这样做:
它生成(使用我的测试数据):
我忘记了:仅在真实数据上使用诸如
mysql_real_escape_string
之类的函数,而不是SQL字符串。在您的示例中,您将该函数应用于已连接的数据。You could do:
It generates (with my test data):
I forgot: Only use functions like
mysql_real_escape_string
on the real data, not the SQL string. In your example you apply the function on the already concatenated data.您已经内爆了现在是数组的东西,因此您需要使用 foreach 循环对其进行迭代,例如...
您可以 echo $q 以确保您也获得了正确的每个项目的查询。
You have imploded things which is now an array, so you need to iterate over this with a foreach loop such as...
You could echo $q to make sure you're getting the queries right for each item also.
试试这个:
try this: