Als u uw databasevelden kunt beheren, raad ik u aan het ingebouwde gegevenstype Timestamp van MySQL te gebruiken. U kunt het standaard op de huidige tijd instellen.
CREATE TABLE IF NOT EXISTS `your_table` (
`date` timestamp NOT NULL default CURRENT_TIMESTAMP
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Zo niet, dan raad ik aan om de standaard tijdstempel in PHP Unix-indeling op te slaan in een integer veld.
$current_time = time();