Du skal tilføje en TIMESTAMP-kolonne som denne:
CREATE TABLE `$table` (
id INT(11) NOT NULL auto_increment,
site VARCHAR(1000) NOT NULL,
actions1 BIGINT(9) NOT NULL,
actions2 BIGINT(9) NOT NULL,
CreatedDateTime TIMESTAMP DEFAULT CURRENT_TIMESTAMP
PRIMARY KEY(id), UNIQUE (site))
Det vil lave en kolonne CreatedDateTime, som indeholder (server)tidspunktet, hvor rækken blev oprettet.
Du kan gøre indsættelsen som:
INSERT INTO `$find` (site, actions1, actions2) VALUES ('$site', 1, 0)
For yderligere reference se her