PHP session is null when called in other page in safari
        Posted  
        
            by steamboy
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by steamboy
        
        
        
        Published on 2010-04-28T23:37:02Z
        Indexed on 
            2010/04/28
            23:47 UTC
        
        
        Read the original article
        Hit count: 347
        
Hello guys,
I have a session created which is null when called from an ajax call on Safari.
header.php
session_start();
$_SESSION['test'] = 'this is my session';
mypage.php
session_start();
echo $_SESSION['test']; <-- NOT WORKING ON SAFARI
Thanks
© Stack Overflow or respective owner