En el caso de declaraciones preparadas, debe usar bindParam
fuera del bucle, por lo general.
bindParam
es un solo paso- establecer variables vinculadas es un paso repetible (bucle)
- tienes que ejecutar
execute
por cada repetición
Supongo que algo así funcionaría:
$stmt = $pdoDB->prepare("INSERT INTO mytab (col, key) VALUES (:col, :key)");
// bind params (by reference)
$stmt->bindParams(":col", $col, PDO::PARAM_STR); //bind variable $col
$stmt->bindParams(":key", $key, PDO::PARAM_INT); //bind variable $key
$values = ['here','are','some','values'];
foreach ($values as $i => $value) {
$col = $value; //set col
$key = $i; //set key
$stmt->execute();
}