Have you tried using 'Switch-Case' instead?..
http://php.net/manual/en/control-structures.switch.php
Example:
PHP Code:
<?php
switch($beer)
{
case 'tuborg';
case 'carlsberg';
case 'heineken';
echo 'Good choice';
break;
default;
echo 'Please make a new selection...';
break;
}
?>