<html>

<head><title>if statement</title></head>

<body>
<?php
  // string comparison
  $today = 'Friday';
  if ($today == 'Saturday' || $today == 'Sunday') 
 
 	  echo("It's the week-end, fantastic!");
 
  else {

 	  echo("Oh, no! It's a workday!");
 	  if ($today == 'Friday')
 	     echo("<br>But at least it is Friday."); 

  }    
   
  // numeric comparison
  $score = 160;
  $score2 = 140;
   
  if ($score > $score2) {

 	 echo ("$score is larger than $score2");

  } elseif ($score == $score) {

 	 echo ("$score is equal to $score2");

  } else {
 	
     echo ("$score is smaller than $score2"); 
 	
 }
 
?>
</body>
</html>