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.
使用 php 和 MySQL 对用户进行身份验证时,以下哪种做法更好? 方法 1 MySQL 选择用户名和密码匹配的位置。 如果返回结果,则对用户进行身份验证。 方法一 MySQL 选择用户名匹配的密码。 使用 php 比较密码是否成功登录。
通常是第一个,因为如果你可以在 MySQL 查询中完成就不需要编写额外的代码,另外,不要忘记制作username列唯一索引。
username