📜  bindParam - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:06.785000             🧑  作者: Mango

代码示例1
prepare('SELECT nom, couleur, calories
    FROM fruit
    WHERE calories < ? AND couleur = ?');
$sth->bindParam(1, $calories, PDO::PARAM_INT);
$sth->bindParam(2, $couleur, PDO::PARAM_STR, 12);
$sth->execute();
?>