Is the time at the Unix Epoch equal to zero (0) ??
Debbie
| SitePoint Sponsor |





Is the time at the Unix Epoch equal to zero (0) ??
Debbie
https://en.wikipedia.org/wiki/Unix_time
The Unix time number is zero at the Unix epoch, and increases by exactly 86 400 per day since the epoch.
Whose DateTime format?
Code:date(DATE_ISO8601, 0)Code:1970-01-01T00:00:00+0000
@AnthonySterling: I'm a PHP developer, a consultant for oopnorth.com and the organiser of @phpne, a PHP User Group covering the North-East of England.


you would first need to decide whether you wanted your mysql table to store an actual datetime value, in which case your choices for datatype are DATETIME and TIMESTAMP, or whether you wanted to store the actual unix epoch number, in which case your choice is limited to INTEGER
Bookmarks