web技術を書いていきます
if( $a == 1 and $b == 3 ){ echo '$aは1であり$bは3である。'; }
if( ! ($a == 3 and $b == 3) ){ echo '$aか$bが3以外です。'; }
if( $a == 1 or $b == 1 ){ echo '$aか$bのどちらかが1である。'; } ?>
if( isset($var) ){ echo 'isset関数を使って検査'; }