Posted by Marc on 10/13/12 11:27
plato wrote:
> Try this:
>
> --- PHP ---
> if (date ("G") < 12) {
> $timeOfDay = "Morning";
> } elseif (date ("G") < 18) {
> $timeOfDay = "Afternoon";
> } else {
> $timeOfDay = "Evening";
Thanks plato, I'll keep that in mind as another possible solution. :)
Marc
[Back to original message]
|