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 Quote 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} Quote 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 } Quote 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 Quote Link to comment https://forums.phpfreaks.com/topic/42104-solved-easy-or-problem/#findComment-204211 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.