amoussa11

PHP - The if Statement

Feb 16th, 2019
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.13 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <?php
  6. $t = date("H");
  7.  
  8. if ($t < "20") {
  9.     echo "Have a good day!";
  10. }
  11. ?>
  12.  
  13. </body>
  14. </html>
Add Comment
Please, Sign In to add comment