PDO查询问题
我需要帮助来完成此声明。令人沮丧的是,这里的两本 PHP 电话簿几乎都掩盖了 PDO。
我需要做的就是检查数据库中是否有已使用的用户名。
这是声明的开头。
$sql = " SELECT * FROM users WHERE userid = '$userid'";
$result = $dbh->query($sql);
我需要添加哪些部分来编写“if”语句?
I need help finishing this statement. It is frustrating that two of the PHP phone books here gloss over PDO's almost all together.
All I need to do is check the database for a username that is already taken.
Here is the start of the statement.
$sql = " SELECT * FROM users WHERE userid = '$userid'";
$result = $dbh->query($sql);
What parts do I need to add to write my 'if' statement?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的事情:
我不确定你的问题,因为你询问用户名但选择用户ID...你的意思是选择用户名吗?
Something like this:
I'm not sure about your question because you're asking about username but selecting userid... did you mean to select on username?