<?php
$hour = date("H");
if ($hour < 12) {
echo "Good morning!";
} else {
echo "Good afternoon!";
}
?>