I have a database table "timetable" with a DATETIME field "created_on"
created_on DATETIME,
notes VARCHAR(255) NOT NULL
I use NOW() function to insert the current time through PDO prepared statements
INSERT INTO timetable(created_on, note)
VALUES(?, ?);
so after binding the values and executing the prepared statment
$notes ="This is a note...";
$values =array("NOW()", $notes);
$stm->execute($values);
the "notes" column on MYSQL server writes the expected data but the "created_on" column produces a
0000-00-00 00:00:00
I don't want to use the unix epoch timestamp. So how do I get DATETIME's NOW() to work?
