AW: [PHP] Re: Detection of no cookies?

2001-07-12 Thread Sebastian Stadtlich
that does not work since cookie will just be available on the next page.. try tesp.php a hack could be just to try to set one, like > > if (setcookie(...)) { > "the user has cookies"; > } else { > echo "No cookies"; > exit; > } -- PHP General Mailing List (http://www.p

[PHP] Re: Detection of no cookies?

2001-07-12 Thread Henrik Hansen
[EMAIL PROTECTED] (Orv î‰÷inklÏ ²ørÏkîskî) wrote: > Hi php'ers > >Since I have a site that relies on cookies it would be good to >detect if a user has turned them off. >How cat I determine if that is the case? a hack could be just to try to set one, like if (setcookie(...))