I am trying to store encrypted data into a cookie. I have tested to make sure there is actually data being encrypted.
setcookie code:
setcookie( $this->cookiename, $frozen, $this->expiration, $this->path, $this->domain, $this->secure);
I use setcookie to create the cookie with the values but when I test with session_get_cookie_params() all I get back is:
Array
(
[lifetime] => 0
[path] => /
[domain] =>
[secure] =>
)
I should be getting back the information that is stored in $frozen, right??
Thanks for the help!!