简体   繁体   中英

Session Variables are lost after redirect with header

i want to store some information in session variablle after login process. i can print the session variables in login post method succesfully. ie, i can fill the session variables. if the user logined succesfully, i redirected to index but my session variables becomes empty.

My Login Post page :

    if($totalRows_Recordset1>0)
    {
        session_start();
        $_Session['Mail']=$un;
        $_Session['Password']=$p;

        header("location: Index.php"); 
        die();

    }

My Index page :

<?php session_start(); echo $_Session['Mail']; ?>

$_SESSION needs to be capitalized, it's case sensitive. $_Session prints because you are declaring a local variable called $_Session. Let me know if it works :)

Yea....capitalize $_SESSION try this $_SESSION['mail']=$un;

Then in index page... echo $_SESSION['mail'];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM