ThinkPHP 框架 关于数据库是否存在某值的问题
程序员文章站
2022-04-18 13:30:01
...
就是想做一个登录系统,但是提交先前注册好的总是输出
是不是where()哪里出问题了,该怎么改啊?
我的数据库中账号为 account_number
是不是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))
下一篇: PHP抓取页面的几种方式_PHP教程