首页 > 解决方案 > 如何将 id 数组插入数据库 MySQL?

问题描述

我正在尝试将一组 ID 插入到数据库表中,但目前它只插入 1 行,而它意味着要执行多行。我的 ID 数组只包含 (filmid) 有人知道问题出在哪里吗?

$pm = "2";
$id = "2";             

if($stmt1->execute())
{
    $films=array();
    foreach($_SESSION['products'] as $key=>$product)
    {
        array_push($films, $product['filmid']);
        $f_id  = implode(",", $films);
        $stmt2 = $this->conn->prepare("INSERT INTO `filmPurchase` (`fpid`, `payid`, `filmid`, `shopid`, `custid`, `price`) VALUES (NULL, :id, :f_id, :pm, :pm, '8')");
        $stmt2->bindParam('pm',$pm);
        $stmt2->bindParam('id',$id);
        $stmt2->bindParam('f_id',$f_id);
        $stmt2->execute();
    }

}

我尝试使用以下方法遍历数组:

foreach($_SESSION['products'] as $key=>$product)
{
    var_dump($key);
    var_dump($product);
}

这是输出的:

int(29) array(4) { ["qty"]=> int(1) ["filmtitle"]=> string(45) "The Lord of 
the Rings: The Return of the King" ["filmid"]=> string(2) "29" ["price"]=> 
float(6.99) } 

标签: phpmysqlarrayspdo

解决方案


如果您的占位符是:idand :pm(如prepare()),那么您必须使用:idinbindParam()

请参阅 php 文档


推荐阅读