View Single Post
Old November 25th, 2005, 07:00 AM   #2 (permalink)
MrDaniel
Member
Verified Customer
 
Join Date: Aug 2003
Posts: 185
okay, I have identified a problem that has to do with the localtime(); php function.... it seems to me that the year value passed from localtime() gives number of years since 1900 but mktime doesn't seem to accept that anymore...

I could be wrong...

Well, the problem seemed to go away if I added this either before or after this entry:
$mon = $mon + 1;
adding the following:
$year = $year + 1900;

that seems to fix at least the showphoto problem....

Last edited by MrDaniel; November 25th, 2005 at 07:37 AM.
MrDaniel is offline