在php中连接mysql查询,其中引号被关闭

时间:2017-03-15 11:59:53

标签: php mysql

我有这个查询,我必须关闭引号才能给用户id会话。但最后我想把LIMIT 1,但我不能因为引号已经接近了。

//查询我的php文件

"SELECT * from grouptitle where userid=".$_SESSION['userid'];

//我想要的查询(引号在iduser之后关闭

"SELECT * from grouptitle where iduser=".$_SESSION['iduser'] LIMIT 1;

1 个答案:

答案 0 :(得分:1)

试试这个

"SELECT * from grouptitle where iduser={$_SESSION['iduser']} LIMIT 1"

OR

"SELECT * from grouptitle where iduser=".$_SESSION['iduser']." LIMIT 1"