Hai,
Thanks for your response.
Iam storing the cookie with 1 parameter.
example:
Iam setting the cookie value as the users name who have logged in.
setcookie("cookiename","name of user");
In logout that is deleting cookie after your reply i tried this:
setcookie("cookiename","new value for cookie");
But it is still retreiving the older value ie the 'name of user'.
In manaul for deleting\unsetting a cookie its been given as :
setcookie("cookiename");
setcookie("cookiename","");
setcookie("cookiename","",time()-3600);
I tried all this but in vain.
Once again thanks for your kind response.
--Aja