up vote 2 down vote favorite
1
share [g+] share [fb]

How do you insert data into a MySQL date or time column using PHP mysqli and bind_param?

link|improve this question

50% accept rate
feedback

2 Answers

up vote 6 down vote accepted

Like any other string

$stmt = $mysqli->prepare('insert into foo (dt) values (?)');
$dt = '2009-04-30 10:09:00';
$stmt->bind_param('s', $dt);
$stmt->execute();

link|improve this answer
feedback

Timestamps in PHP are integers (the number of seconds from the UNIX epoch). An alternative to the above is to use an integer type date/time parameter, and the MySQL functions FROM_UNIXTIME and UNIX_TIMESTAMP

$stmt = $mysqli->prepare("INSERT INTO FOO (dateColumn) VALUES (FROM_UNIXTIME(?))");
$stmt->bind_param("i", $your_date_parameter);
$stmt->execute();
link|improve this answer
@Rob: When I use this, the date set is 1970/01/01 – Hrishikesh Choudhari Apr 6 '11 at 11:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.