会话变量在其他页面上显示为空

时间:2019-05-11 19:13:37

标签: php mysql session-variables

编辑:在做了一些反复试验后,我注意到如果注释以下代码:

 $success = $_SESSION["success"];
session_unset($_SESSION["success"]); 

$ to变量按预期显示。所以我的问题是为什么两个不能同时使用?

原始问题:

我正在尝试使用mail()函数发送电子邮件。为了做到这一点,我跨两个页面传递了变量$ _SESSION ['emailfrompass'],但由于某种原因,该变量始终为空。即使我随消息发送了另一个变量,但我也没有收到任何问题,但这是唯一会引起问题的变量

session_start()在所有页面上设置。我尝试使用

ini_set('display_errors',1); error_reporting(E_ALL);

用于发现问题,但无济于事。变量始终为空

这是我的enterEFPass.php文件。最重要的是我有

<?php
session_start();
ini_set('display_errors',1); 
error_reporting(E_ALL); 
?>
 <?php 


    if(isset($_SESSION["success"]))
    {
       $success = $_SESSION["success"];
       session_unset($_SESSION["success"]); //echoing this will display the right thing
       $to = "";
       $to  = isset($_SESSION['emailforpass']) ? $_SESSION['emailforpass'] : 'not found';
       echo $to; //does not work


       //mail($to, "Reset your password", $message, $headers);


   ?>

     <div id='alert'>
      <div class='alert alert-block alert-info'>
      <?php   
       echo $success;

      // echo "<script>setTimeout(\"location.href = 'login-page.php';\",2500);</script>";
    ?>
      </div>
     </div>
<?php
}?>

这是enterEFPass_route.php,我在其中实例化$ _SESSION变量

<?php
  session_start();
  include 'db.php';


  $email = "";
  $conn = Connect();
 if (isset($_POST['send_email_button'])) 
 {
     $email = mysqli_real_escape_string($conn, $_POST['email']); //$_POST['email'] the field where I introduce the email
 }
 if (empty($email)) { array_push($errors, "Please enter a valid email"); }
 if (count($errors)==0) // just an array for error messages
    {

        $_SESSION['emailforpass'] = $email; //appears empty always
        $_SESSION['success'] = "An email has been sent to the corresponding address. Please follow the instructions provided there"; //goes without problems

        header("location: enterEFPass.php");


    } else
    {
        $_SESSION['errormsgpassress']= $errors; //no problems in sending
        header("location: enterEFPass.php");
      }

  }
  ?>

我希望$ to变量可以在屏幕上显示,但是它始终显示“未找到” 如果我打印$ _SESSION ['success']则没有问题

2 个答案:

答案 0 :(得分:2)

方法session_unset()不接受任何参数。它用于取消设置所有会话变量,因此正在取消设置$_SESSION['success']变量。有关更多详细信息,请参见here。而是使用unset($_SESSION['success']);取消设置单个会话变量。希望这会有所帮助!

答案 1 :(得分:-2)

仅在要设置会话值的文件中使用session_start(),而无需在所有文件中使用,这就是我在上一个项目中用于自定义登录系统的方式