| 
	
 | 
 Posted by Marcus on 06/18/47 11:28 
alucard001@gmail.com wrote: 
> Hi all! 
>  
> I am a newbie in PHP and I have a question on using $_SESSION. 
>  
> To keep it short, here is the code: 
>  
> A.php: 
> <?php 
> if($_POST['username'] == 'USER' && $_POST['password'] == 'PWD'){ 
>        $_SESSION['isLogin'] = 1; 
>       ?> 
>       <script language="javascript"> 
>          window.location.href="B.php"; 
>       </script> 
>       <?php 
> } 
> ?> 
>  
> B.php: 
> <?php 
>     print $_SESSION['isLogin']; 
> ?> 
>  
> Assume username and password is correct, but B.php show NOTHING!!! 
> That is, the $_SESSION haven't passed the value from one page to the 
> other page... 
>  
> In php.ini: register_globals = On 
>  
> My question is: how to pass the value from one page to another, without 
> using $_POST or some other things? 
>  
> Thanks in advance. 
>  
 
You need to call session_start() at the top of both scripts.
 
  
Navigation:
[Reply to this message] 
 |