sheraz Posted August 22, 2009 Share Posted August 22, 2009 hi. i m trying to acces cookies values entered on page 1 to page 2 but it is not working well. i m sending you the code and guide me what is the problem? cookie.php <? if(isset($_POST['name']) ) { setCookie("username",$_POST['name'], time()+3600); } if(isset($_POST['pw'] ) ) { setcookie("password",$_POST['pw'],time()+3600); } echo "<html><head></head>"; echo "<body>"; echo "<form action=cookie_login.php method=post>"; echo " Enter Name: <input type=text name=name><br>"; echo "Enter Password: <input type=password name=pw><br>"; echo "<input type=submit value=login></form>"; echo "</body></html>"; ?> cookie_login.php <? if(isset($_COOKIE['username'] ) ) { echo "Welcome $_COOKIE[username] : You have been LoggedIn"; } else echo "Enter correct username or password"; ?> Quote Link to comment Share on other sites More sharing options...
Alex Posted August 22, 2009 Share Posted August 22, 2009 It should be: echo "Welcome {$_COOKIE['username']} : You have been LoggedIn"; Quote Link to comment Share on other sites More sharing options...
sheraz Posted August 22, 2009 Author Share Posted August 22, 2009 dear if i access cookies on the same page i.e( cookies.php) then it works correctly. but after typint name and password when it click login then on next page it should access cookies i. username But it is not working. :'( i have tried your code its output doesnot containg username. please help me. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.