beermaker74 Posted March 10, 2007 Share Posted March 10, 2007 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 More sharing options...
papaface Posted March 10, 2007 Share Posted March 10, 2007 Do this if ($row_Recordset3['access'] !== 'var1' || $row_Recordset3['access'] !== 'var2' ){do something} Link to comment https://forums.phpfreaks.com/topic/42104-solved-easy-or-problem/#findComment-204201 Share on other sites More sharing options...
wildteen88 Posted March 10, 2007 Share Posted March 10, 2007 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 https://forums.phpfreaks.com/topic/42104-solved-easy-or-problem/#findComment-204202 Share on other sites More sharing options...
beermaker74 Posted March 10, 2007 Author Share Posted March 10, 2007 i figuredit was something like that thanks Link to comment https://forums.phpfreaks.com/topic/42104-solved-easy-or-problem/#findComment-204211 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.