[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(...)) {
        "the user has cookies";
} else {
        echo "No cookies";
        exit;
}

-- 
Henrik Hansen

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to