Glem alt om bindParam
, brug bare execute
og send den værdierne af $array
:
$STH->execute($array);
Alternativt kan du ridse de navngivne parametre helt for at forenkle din kode en smule:
$columnString = implode(',', array_keys($array));
$valueString = implode(',', array_fill(0, count($array), '?'));
$STH = $core->dbh->prepare("INSERT INTO table ({$columnString}) VALUES ({$valueString})");
$STH->execute(array_values($array));