dongmei9961 2018-01-19 20:45
浏览 30
已采纳

会话变量间歇性PHP

I am trying to create a website and teach myself at the same time. I have implemented a database connection to allow users to register and sign in/out of the website but for some reason the session variables don't appear to be accessible from one specific page.

I have got the following php code on 2 pages that are in the same directory but the session vars are only accessible from one of the pages? Can anyone suggest what might be causing this and how this can be resolved?

<?php
// Initialize the session
session_start();
if(isset($_SESSION['username'])){echo "A";}
echo $_SESSION['username'];
?>

The initialisation of the username is done here:

if (password_verify($password, $row["password"])) { 
                session_start();
                $_SESSION['username'] = $username;
                $_SESSION['userType'] = $row["userType"];
                header("location: ../index.php");
            }
  • 写回答

1条回答 默认 最新

  • dounianluo0086 2018-01-24 22:23
    关注

    SOLVED:

    In my navigation bar I was using a full URL instead of a relative link, this was causing a new session ID to be created and hence the session data was lost. Changing the nav bar to use relative paths meant the data wasn't lost

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?