This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

PHP Conditional Statements

The if Statement

2024 Nov 24 00:35:43
Have a good day!

<?php
$t = date("H");
  echo date("Y M j H:i:s");
  echo "<br>";

if ($t < "20") {
  echo "Have a good day!";
}
?>