dqr3883 2017-07-19 21:01
浏览 10

如何为个人资料页面设置会话?

I have a page that allows the user to login and see their profile page, however i wish that the users should be able to see their details that are saved in the database on their profile page whenever they login successfully.

  • 写回答

1条回答 默认 最新

  • dqrm8199 2017-07-19 21:19
    关注

    You would normally set a SESSION with some unique identifier to the user. This could be the ID of the user f.ex.

    So, a user logs in with the correct credentials and a $_SESSION['id'] = $result['id']; would be set f.ex.

    Now you can query your database for only that user, maybe something like this;

    $sql = "SELECT * FROM users WHERE id='".$_SESSION['id']."'";
    $query = mysqli_query($db, $sql);
    $result = mysqli_fetch_array($query);
    

    Now you can fetch the users information through $result[], ex;

    echo $result['username'];
    

    This would return the username of the logged in user.

    评论

报告相同问题?

悬赏问题

  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计
  • ¥70 PlayWright在Java上连接CDP关联本地Chrome启动失败,貌似是Windows端口转发问题
  • ¥15 帮我写一个c++工程
  • ¥30 Eclipse官网打不开,官网首页进不去,显示无法访问此页面,求解决方法
  • ¥15 关于smbclient 库的使用