spewn
Programmer
- May 7, 2001
- 1,034
here's the code i'm using:
when the minutes are less than 10, it reads as a single digit...
any ideas?
- g
Code:
($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime time;
$year += 1900;
$mon +=1;
$theDateIs=$mon.'/'.$mday.'/'.$year;
$theTimeIs=$hour.':'.$min.':'.$sec;
when the minutes are less than 10, it reads as a single digit...
any ideas?
- g