尝试使用循环绑定php中sql语句的参数,我得到的所有参数都等于最后一个。 这是我的代码:
$nomTypeFormation = "Types";
$nomFormation = "Nomss";
$prixHTFormation = 00;
$taxeFormation = 00;
$dureeFormation = 10;
$idTypeFormation = 1;
$data=[
$nomFormation,
$dureeFormation,
$prixHTFormation,
$taxeFormation,
$idTypeFormation
];
$requestConnexion = "mysql:host=localhost;dbname=EcoleFormationsDB";
try {
$db = new PDO($requestConnexion, "root", "root");
} catch (\Exception $e) {
echo "Failed connect to DB : ".$e->getMessage();
}
$query = "INSERT INTO Formations VALUES (NULL, ?, ?, ?, ?, ?)";
$st = $db->prepare($query);
foreach ($data as $key => $value) {
$st->bindParam($key +1, $value);
}
// $st->bindParam(1, $nomTypeFormation);
// $st->bindParam(2, $dureeFormation);
// $st->bindParam(3, $prixHTFormation);
// $st->bindParam(4, $taxeFormation);
// $st->bindParam(5, $idTypeFormation);
$st->execute();
使用此方法,我在“ Formations”表中获得包含这些值的新行 重复的“ 1”是最后一个绑定变量的重复值,即:$ idTypeFormation
NB 我在Apache上使用php7.2。 谢谢。