Varias coisas:
- Remova a segunda instrução prepare dentro de
for
laço - Adicione parâmetros vinculados ao
VALUES()
da instrução sql - Indexar as
$images
array comfor
iterador de loop ou useforeach
Veja ajustado
for
ciclo:$stmt = $this->db->prepare("INSERT INTO images (category_id, dir_image)
VALUES (:category_id, :dir_image)");
$stmt->bindParam(":category_id" ,$lastId);
$stmt->bindParam(":dir_image", $image);
for ($i = 0; $i < count($images); $i++){
$image = $images[$i];
$stmt->execute();
}
Alternativamente com
foreach
loop (assumindo uma matriz de uma dimensão) :$stmt = $this->db->prepare("INSERT INTO images (category_id, dir_image)
VALUES (:category_id, :dir_image)");
$stmt->bindParam(":category_id", $lastId);
$stmt->bindParam(":dir_image", $item);
foreach ($images as $item){
$stmt->execute();
}