Hi,
I have a small problem ..
When I login, a cookie is set with the username the code for that is :
if(isset($userlogin))
{
Setcookie("userlogin");
}
SetCookie("userlogin",$USERNAME,time()+7200);
Since for the first time the cookie isnot set so it wont go in if {}..
But this function : SetCookie("userlogin",$USERNAME,time()+7200);
dosent set the cookie and again I get the login page..now the next time
when I login it goes in the if statement and i can login ...
What going wrong I can figure out...??
The same file if I test on Lynx it works fine...but on WIN it is giving me this problem...
How do I handle it??
Please help......
Kajol Shroff