to store:
setcookie ("TestCookie[0]", "zero", time() + 3600);
setcookie ("TestCookie[1]", "one", time() + 3600);
setcookie ("TestCookie[2]", "two", time() + 3600);
or
setcookie ("TestCookie[one]", "1", time() + 3600);
setcookie ("TestCookie[two]", "2", time() + 3600);
setcookie ("TestCookie[three]", "3", time() + 3600);
to retrieve:
foreach($_COOKIE["TestCookie"] as $key => $value) {
echo "{$value}<br>";
}
or
echo $_COOKIE["TestCookie"]["one"];
echo $_COOKIE["TestCookie"][1];
Jan - Cwizo wrote:
> Hi !
>
> How can I stoor array in to a cookie ?
>
> Do I just define an array and stoore it in a cookie ?
> How do I access the data in the array then ?
>
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php