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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.