My application must store cookies. When the user logs in, I want to make sure that if the cookie does not exist, create it and save the value, but if it changes it.
if(cookieExist)
{
cookiename = "value";
}
else
{
create a new cookie
then store the value;
}
Thanks for any help
source
share