Re: [PHP] Unable to get the values in next page

2003-08-25 Thread murugesan
Subject: Re: [PHP] Unable to get the values in next page > Quoting murugesan <[EMAIL PROTECTED]>: > > [ trim ] > > > main.php > > - > > echo $failed;// this is null here > > -> > > Try echo $_SESSION['fail

[PHP] Unable to get the values in next page

2003-08-25 Thread murugesan
I did as what you said. But the problem now is that I am not able to get the values in the next page. index.php -- session_name("mysessionname"); session_start(); ---> auth.php - $failed="yes"; session_register('failed'); header ("Location: /main.php"); ---