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.
我正在制作个人资料系统,但我似乎碰上了砖墙,我需要这样做,所以如果登录的用户正在查看他们自己的个人资料,那么他们将有其他选择,例如更改他们的个人资料图片,但如果其他人登录并查看其他人的个人资料,则个人资料的输出将有所不同,就像 Facebook 或 Twitter。
我没有任何代码可以给你看,否则我会的。
if(md5($_GET['id']) == $_SESSION['id']) { echo "this is your profile"; } else { echo "this is not your profile"; }
登录时的 md5 会话,不安全,但比 登录时以纯文本形式保存任何内容更好:$_SESSION['id'] = md5($id); $id 来自登录名或数据库。