<?php
$t=date('H');
echo "Current Time: $t<br>";
if($t<"12")
echo 'Good Morning!';
else if($t>="12" && $t<="5")
echo 'Good Afternoon!';
else if($t>"5" && $t<="7")
echo 'Good Evening!';
else
echo 'Good Night!';
?>
$t=date('H');
echo "Current Time: $t<br>";
if($t<"12")
echo 'Good Morning!';
else if($t>="12" && $t<="5")
echo 'Good Afternoon!';
else if($t>"5" && $t<="7")
echo 'Good Evening!';
else
echo 'Good Night!';
?>
Comments