Hiya,
I want to store a multidimensional array inside a cookie. For example:
$array_favorites = array (
array (
name => "Yahoo",
url => "http://www.yahoo.com",
description => "Search engine."
),
array (
name => "Microsoft",
url => "http://www.microsoft.com",
description => "Microsoft's homepage."
),
array (
name => "BBC",
url => "http://www.bbc.co.uk",
description => "BBC television and news."
)
);
Can anyone tell me how I could store information like this inside a cookie?