Jump to content

putting variables inside predefined variables. Possible?


jtorral

Recommended Posts

Normally,

 

I would check for a cookie something like this

 

$_COOKIE['cookie_name']

 

But how can I do this ...

 

$cn = "cookie_name";

$_COOKIE['$cn'];

 

I can't get it to work. Is there a special way of assigning a variable to a global predefined?

 

Thanks

Link to comment
Share on other sites

i have javascript that sets a cookie when I click on a link.

I then call the function below to check the value of the cookie.

 

I am trying to use variable $div because I have 20 cookies withe the name xxx_div1 through xxx_div20 therefor I try to create the cookie name in the call so ai can minimize code.

 

If i take the function below and replace $divcn with the actual cookie name it works as expected. If I use the variable, it always goes to the else.

 

function checkdivsettings($div) {

  $divcn = "xxx_" . $div;

  if(isset($_COOKIE[$divcn])) {

      $div = $_COOKIE[$divcn];

  } else {

      $div = "block";

  }

  return $div;

}

 

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.