Algo asi te puede servir, para darte una idea (si es que entendi)
Código PHP:
<%
Dim hora
hora = Hour(Time())
If hora > 6 and hora < 13 then
Response.Write ("<B>Este es el PROGRAMA DE LA MAÑANA</B>")
ElseIf hora > 12 and hora < 20 then
Response.Write ("<B>Este es el PROGRAMA DE LA TARDE</B>")
ElseIf hora > 19 and hora < 24 then
Response.Write ("<B>Este es el PROGRAMA DE LA NOCHE</B>")
ElseIf hora >= 0 and hora < 7 then
Response.Write ("<B>Este es el PROGRAMA DE LA MADRUGADA</B>")
End If
%>
Si lo interprete bien, esto te puede servir para arrancar
Saludos
_br1_