Posted by Kim Andrι Akerψ on 10/13/15 11:27
Marc wrote:
> 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. :)
And if it still doesn't work, try it this way:
<?php
if (intval(date("G")) < 12) { $timeOfDay = "Morning"; }
elseif (intval(date("G")) < 18) { $timeOfDay = "Afternoon"; }
else { $timeOfDay = "Evening"; }
?>
--
Kim AndrΓ© AkerΓΈ
- kimandre@NOSPAMbetadome.com
(remove NOSPAM to contact me directly)
Navigation:
[Reply to this message]
|