Showing posts with label date funtion. Show all posts
Showing posts with label date funtion. 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>

if-else statement

Code Example

<html>
<body>
<?php
    $day=date("D");
    if ($day=="Sat")
     {
         echo "Have a nice weekend!";
     } 
    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>