当前位置:Gxlcms > PHP教程 > ThinkPHP框架关于数据库是否存在某值的问题

ThinkPHP框架关于数据库是否存在某值的问题

时间:2021-07-01 10:21:17 帮助过:4人阅读

就是想做一个登录系统,但是提交先前注册好的总是输出





是不是where()哪里出问题了,该怎么改啊?

我的数据库中账号为 account_number


回复讨论(解决方案)

看看日志,或者试一试

$condition['usename'] = '江南可采莲';$User->where($condition)->select(); 

额,账号值不是固定的啊,

where('account_number=$username')
至少应写作
where("account_number=$username")
考虑到 $username 可能不是纯数字
所以应写作
where("account_number='$username'")

where(array('account_number' => $username))

人气教程排行