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 Sep 21 20:32:29

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

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