Page 1 of 1

cookies

Posted: Fri Apr 11, 2003 12:11 am
by nincha
was wondering if php can read a cookie stored with javascript, if yess, is it the same syntax?

Posted: Fri Apr 11, 2003 3:51 am
by twigletmac
If you do:

Code: Select all

echo '<pre>';
print_r($_COOKIE);
echo '</pre>';
you can check on all the cookies you've set.

Mac