gpt4 book ai didi

php : variable into SQL QUERY (PDO)

转载 作者:行者123 更新时间:2023-11-29 11:48:00 25 4
gpt4 key购买 nike

我正在使用 PDO 从 mySQL 数据库调用一个表,如您所见:

$reponse = $bdd->query('SELECT * FROM exercices WHERE chapitre=\'hello\' ORDER BY id DESC');

现在,我想做同样的事情,但我想使用之前设置的变量而不是“hello”:

$reponse = $bdd->query('SELECT * FROM exercices WHERE chapitre=\'echo $cat\' ORDER BY id DESC');

这不起作用。我可能对“echo $cat”有疑问。有人知道吗?谢谢。

最佳答案

使用绑定(bind)变量,我不知道变量来自哪里,但为了安全起见:

$reponse = $bdd->query('SELECT * FROM exercices WHERE chapitre=:cat ORDER BY id DESC');
$reponse->bindParam(':cat', $cat, PDO::PARAM_STR); //assuming it is a string
$reponse->execute();
$result = $reponse->fetchAll(); //make the select
print_r($result); //debug

关于php : variable into SQL QUERY (PDO),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34578682/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com