Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个基本的聊天应用程序,请记住这个想法非常简单。我想在每次用户登录时将数据库中的布尔值设置为 true,每次用户注销时设置为 false,以验证用户是否在线/离线。我将如何返回仅返回布尔值设置为 true 的用户的用户列表?
$sql="SELECT * FROM users WHERE flag=1";
然后将此字符串传递给您的数据库并获取结果。