Hiyas
Just a quick one
if I have a cookie called:
test
and on the cookie I ahve written:
one two
$_COOKIE['test'] will return both words but how to I return one word at a time?
$words=explode(" ", $_COOKIE['test']); echo $words[0]; # prints "one"
thanks