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

php文件中的sql的分割问题

WBOY
發布: 2016-06-23 14:10:04
原創
1145 人瀏覽過

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

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板