gpt4 book ai didi

php - 如何将2个数组插入mysql数据库中的2列、不同行?

转载 作者:行者123 更新时间:2023-11-29 14:07:44 25 4
gpt4 key购买 nike

foreach ($_SESSION['exampleOne'] as $item)
{//insert sql

foreach ($_SESSION['exampleTwo'] as $comment)
{//insert sql

如何将 2 个 foreach 合并在一起?现在我的数据库存储如下..:

    comment | item
---------------
Nice! | Pants
Great! | Pants
Awesome!| Pants
Nice! | Skirts
Great! | Skirts
Awesome!| Skirts
Nice! | Shirts
Great! | Shirts
Awesome!| Shirts

当我存储它时,我希望它在我的数据库中以某种方式像这样:

comment | item
---------------
Nice! | Pants
Great! | Skirts
Awesome!| Shirts

最佳答案

你可以这样做--

$merge = array_combine ($_SESSION['exampleOne'],$_SESSION['exampleTwo'])
foreach($merge as $key => $value)
{
// your insert query
$query = "insert into tableName set comment='$key', item='$value'";
}

关于php - 如何将2个数组插入mysql数据库中的2列、不同行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14099584/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com