首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

php文件中的sql的分割有关问题

2013-06-19 
php文件中的sql的分割问题$querySelect * from authorized_users where name .$userid. and passwo

php文件中的sql的分割问题
$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')";
这样是不是清爽些?

热点排行