Jump to content

[SOLVED] easy or problem


beermaker74

Recommended Posts

if ($row_Recordset3['access'] !== ('var1' || 'var2')){do something}

I need it to evaluate both vars and if one of them are not true

its not evaluating both vars

it works fine if i only use one

ie

if ($row_Recordset3['access'] !== 'var2'){do something}

 

i have been up too many hours my brain is fried. can someone help please

Link to comment
Share on other sites

This is not the correct syntax:

if ($row_Recordset3['access'] !== ('var1' || 'var2')){do something}

 

YOu can not evaluate multiple values at one time you have to do each separately like so:

if($row_Recordset3['access'] != 'Var1' || $row_Recordset3['access'] != 'Var2')
{
    // either row_Recordset3['access'] does not equal to var1 or var2
}
else
{
    // either row_Recordset3['access'] does equal to var1 or var2
}

 

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.