<?php
$hour=date("H");
if($hour < 12 and $hour >=0) {
  echo "Good morning".date("H:i:s");
} else if ($hour <19 and $hour >=12) {
  echo "Good afternoon";
} else {
  echo "Good night".date("H:i:s");
?>