Forum Moderators: coopster
With the date() function you can get the month, day, hour, min, sec.
example:
$time = time();
$date = date("l F d, Y, h:i A",$time);
that returns something like this: Sunday November 30, 2008, 03:50 PM
Is that what you mean?
You can do:
$time .= "000"
That will turn it into a string for the purpose of passing it to the html code. But then when the form is posted, it'll probably be turned back into an integer, which will be more than 32 bits, and it might be an overflow depending on the language and what it's doing with it.