On Thursday 13 February 2003 16:07, Terry Lau wrote:
> Hello,
>     I created a PHP page that included cookie, here is the PHP code:
> <?php
> if (isset($HTTP_POST_VARS['Name'])) {
> setcookie("Name", $HTTP_POST_VARS['Name'], time()+86400*10);
> }

[snip]

> But when I called the cookie variable in another page, it showed
> "Notice: Undefined index: Name in....". Here is the PHP code in another
> page:
>
> <html>
> <head>
> <title>Untitled Document</title>
> <meta http-equiv="Content-Type" content="text/html; charset=big5">
> </head>
>
> <body>
> HI!! <?php echo $HTTP_COOKIE_VARS['Name']; ?>
> </body>
> </html>

On the page where you want to read the cookie you need to call 
session_start().

-- 
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
------------------------------------------
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-general
------------------------------------------
/*
Electrocution, n.:
        Burning at the stake with all the modern improvements.
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to