Re: [PHP] Unable to get the values in next page
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
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"); ---