גם JS מתאים ?
HTML קוד:
<SCRIPT LANGUAGE="JavaScript">
currentTime = new Date();
if (currentTime.getHours() < 12)
document.write("בוקר טוב");
else if (currentTime.getHours() < 16)
document.write("צהריים טובים");
else if (currentTime.getHours() < 18)
document.write("אחר הצהריים טובים");
else if (currentTime.getHours() < 22)
document.write("ערב טוב");
else
document.write("לילה טוב");
</SCRIPT>