Jump to content

[SOLVED] (or) inside if else problems


dubc07

Recommended Posts

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

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.