Code: Select all
put $_COOKIE into allCookies
put allCookies["mycookie"] into mycookie
if mycookie is empty then put "problem"
Code: Select all
put cookie "mycookie" for "/" with empty
which defeats the first test.
Is it normal ? Should I just add a condition <>"(null)" to the "empty" condition and don't bother ?