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?
|
|
|||
|
|
|
mktime() - Get Unix timestamp for a date
To handle AM/PM just add 12 to hours if PM.
Alternatively you could use strtotime(): strtotime() - Parse about any English textual datetime description into a Unix timestamp
|
|||
|
