Say I have an array cookie MyArrayCookie[].
Now I want to delete this cookie, can I use the statment
setcookie("MyArrayCookie");
Or should I use for loop to delete the cookie by delete every array element one by one?
for ($index=0; $index<count($MyArrayCookie); $index++)
{
setcookie("MyArrayCookie[$index]");
}
Thanks!