The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.
The working script is
http://www.chrisjhaig.co.uk/Calendar.php
The source is:
http://www.chrisjhaig.co.uk/Calendar.txt
Could anyone give any indication as to why the 26th is displayed twice??
Thanks to anyone who might be able to help.
Apparently, on reading into it, PHP doesn't like dates past 2037 ... which is, strange.
So, its the PHP people's fault, not mine :)
;-)
Nice calender though, better than anything I could do *self-pity*
Thanks.
Thanks for that, seems to be working as intended now :c)
Thanks again :c)
Shame they've got no noses...
:c)
Thanks for that, seems to be working as intended now :)
Thanks again :)
> Could anyone give any indication as to why the 26th is displayed
> twice??
>
Try changing
$Start = mktime(0, 0, 0, $Month, 1, $Year);
to something like
$Start = mktime(1, 0, 0, $Month, 1, $Year);
ie, don't create a point in time where no time has passed for that particular day.