Showing posts with label if statement. Show all posts
Showing posts with label if statement. Show all posts

Tuesday, October 11, 2011

if - elseif - else

Code Example

<html>
<body>
   <?php
       $day=date("D");
       if ($day==”Sat")
       {
              echo "Have a nice weekend!";
       }
       elseif ($day=="Sun")
       {
             echo "Have a nice Sunday!";
       }
       else
       {
             echo "Have a nice day!";
       }
    ?>
</body>
</html>

Simple if statement

Code Example

<html>
<body>
    <?php
      $day=date("D");
      if ($day=="Sat")echo "Have a nice weekend!";
    ?>
</body>
</html>