Forum Moderators: coopster
I'm trying to rewrite this code:
$month1=gmmktime(0,0,0,1,1,2008);
To this:
$month2=gmmktime(date("0,0,0,n,1,Y"));
However, I get the following outputs:
$month1=1199145600
$month2=1199235361 (with this one changing on reload)
Why is $month2 changing every second, and what can I do to make it stop?