首頁 >後端開發 >php教程 >php文件中的sql的分割问题

php文件中的sql的分割问题

WBOY
WBOY原創
2016-06-23 14:10:041161瀏覽

$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!!!!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn