Hello
I am trying the following:
$the_day=mktime(0,0,0,03,30,03);
This should result in a UNIX timestamp being returned, but instead I am getting a value of -3662
If I try:
$the_day=mktime(0,0,0,03,29,03);
Then I get a UNIX timestamp as expected.
Anyone know why the 30th March 2003 doesn't work?
Thanks.