expired-cookies

Cookie Expiration times

Is is possible to find out when a cookie expires, I have set my cookie up doing this $_COOKIE[] = setcookie("bangUser", $unique, time() + (60*60*24*30)); is possible to print out is expiration date on screen somehow? ...

How to deal with arrays of data in cookies

Hi all, I want to store data in a cookie and I am not exactly sure how I will go about it. The data is the UserName, and Password values for the users that are logging into a website, e.g. sometime like this UserName = bob, Password=Passw0rd1 UserName = harry, Password=BLANK UserName = george, Password=R0jjd6s What this means ...