yogi
answered Apr 26 '23 00:00
n PHP, you can store arrays in cookies by serializing the array and then setting it as the cookie value. Here is an example of how to do it:
$my_array = array('apple', 'banana', 'orange');
$serialized_array = serialize($my_array);
setcookie('my_cookie', $serialized_array, time() + 3600);
To retrieve the array from the cookie, you would first get the serialized string from the cookie value, and then unserialize it back into an array:
$serialized_array = $_COOKIE['my_cookie'];
$my_array = unserialize($serialized_array);
echo $my_array[0];