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

Link to comment
Share on other sites

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';

}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.