I save a cookie with value like 131|444|777
And then I try to make an array of it like:
$ausnahmenarray = explode('|', $_COOKIE['ausnahmen']);
foreach($ausnahmearray as $id)
{
echo $id . '<br>;
}
I don't get anything, so I check the cookie value in the browser and see it's like: 131%7C444%7C777
why the hell can't the value just be stored the way I saved it and how can I read it the way I saved it?