Jump to content

Check, cookies are enabled on client browser or not


garrisonian14

Recommended Posts

Hi All,

 

I am trying to put a check in my php code to verify that cookies are enabled on client browser or not .

 

I need help in this regard,

 

Can anybody please give some clue, how can i do this ?

 

Is this possible in php or i will have to do this in Javascript.

 

Looking for your help

 

Regards,

Ali

You can do it in php with setcookie() but you won't know until the next page load if they've worked or not. Soooo, maybe something like this:

 

if (!isset($_GET['cookiecheck']) {

    setcookie(blah, blah, blah);

    header('Location: ?cookiecheck=true);

    die();

}

 

if (isset($_COOKIE['blah']) && $_COOKIE['blah'] == THE_VALUE_YOU_SET_IT_TO) {

    echo 'Cookies are enabled';

}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.