Ok I fixed the error "Cannot modify header information - headers already sent by...", but I still cannot read the value of the cookie set. This is how I'm reading it:
echo $HTTP_COOKIE_VARS['gamelevel'];
also tried:
echo $HTTP_COOKIE_VARS['gamelevel'];
neither work. This is a php file, and I can see thru Firefox that the cookie was set. I'd really like to assign the cookie to a variable, but since I can't even print it out at this point... Any help would be appreciated.