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
https://forums.phpfreaks.com/topic/42104-solved-easy-or-problem/
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
}

 

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.