I am having problems creating and reading cookies. I am by no means an expert, so I would appreciate anyone who could give me some advice. I am using a script from Matt's archives call 'cookie.pl', and it worked the first time I used it. Now I have it in another app and it works sometimes, and sometimes it does'nt. I also tried CGI
m, and the cookie function did not work at all. Here is what I am doing now, trying to save a password:
if (&GetCookies('password')) {
$cookiePass=$Cookies{'password'};
}
else {
&SetCookies('password',$User_password);
}
I am most likely missing something simple....
Thanks,
T.Davis

if (&GetCookies('password')) {
$cookiePass=$Cookies{'password'};
}
else {
&SetCookies('password',$User_password);
}
I am most likely missing something simple....
Thanks,
T.Davis
Comment