Hi,
I just want to double check the usage of both session_unset and session_destroy.
I have a web page with 2 cookies being set. I want to delete all traces of one of the cookies after the person clicks on a link. The other cookie should remain the same.
Do I do this by:
session_unset('cookie_name');
session_destroy('cookie_name');
??
Thanks,
dr