dubc07 Posted August 20, 2008 Share Posted August 20, 2008 I'm having a problem passing yes and no. <?php $ticket = 'Awesome'; if ($ticket == 'cool' or 'not cool' or 'wow')///// i have also tried the || in or's place $pass = 'YES'; else{ $pass = 'NO'; } echo $pass; This echo's yes for some reason when it should echo no. It works great if it is one ---> ($ticket == 'cool' ) but when i add or it Fry's Any ideas? ?> Link to comment https://forums.phpfreaks.com/topic/120537-solved-or-inside-if-else-problems/ Share on other sites More sharing options...
php_dave Posted August 20, 2008 Share Posted August 20, 2008 if ($ticket == "cool" || $ticket == "not cool" || $ticket == "wow") { $pass = "YES"; } else { $pass = "NO"; } Link to comment https://forums.phpfreaks.com/topic/120537-solved-or-inside-if-else-problems/#findComment-621122 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.