I have a form which posts date information month, day, yeah, hour, minute, am/pm. How do i encode/decode this to and from unixtime using php?

link|improve this question

If I search SO with your title the first 7 or so hits contain the same answer you selected. – Mike B Nov 4 '09 at 0:31
feedback

2 Answers

up vote 5 down vote accepted

mktime() - Get Unix timestamp for a date

echo mktime(23, 24, 0, 11, 3, 2009);
1257290640

To handle AM/PM just add 12 to hours if PM.

mktime($isAM ? $hrs : ($hrs + 12), $mins, $secs, $m, $d, $y);

Alternatively you could use strtotime():

strtotime() - Parse about any English textual datetime description into a Unix timestamp

echo strtotime("2009-11-03 11:24:00PM"); 
1257290640
link|improve this answer
.....thanks..... – GrapeCamel Nov 3 '09 at 23:34
feedback

Use the mktime function

link|improve this answer
how would i handle the AM or PM? – GrapeCamel Nov 3 '09 at 23:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.