欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php文件中的sql的分割问题

程序员文章站 2022-04-22 16:59:24
...
$query='Select * from authorized_users where name= "'.$userid.'" and password=sha1("'.$password.'")';
这样写对吗?


回复讨论(解决方案)

字符串是用单引号括起来的

$query='Select * from authorized_users where name= "'.$userid.'" and password=sha1("'.$password.'")';
这样写对吗?


$query="Select * from authorized_users where name= '$userid' and password='{sha1($password)}'";

$query='Select * from authorized_users where name= "'.$userid.'" and password=sha1("'.$password.'")';
语法正确,但可读性不强

$query="Select * from authorized_users where name='$userid' and password=sha1('$password')";
这样是不是清爽些?

你们说的对的,我是初学,结果表名写错了。sorry!!!!