Jump to content

cookies


sheraz

Recommended Posts

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";

?>

Link to comment
https://forums.phpfreaks.com/topic/171386-cookies/
Share on other sites

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.

Link to comment
https://forums.phpfreaks.com/topic/171386-cookies/#findComment-903881
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.