Mysql
 sql >> Base de données >  >> RDS >> Mysql

Datetime MAINTENANT PHP mysql (+ variante PDO)

Étant donné que personne n'a répondu explicitement à la question, j'ajouterai la bonne réponse par souci d'exhaustivité.

$stmt = $pdoDb->prepare('INSERT INTO tablename (id, value, time_created) VALUES (:id, :value, NOW())');
// either bind each parameter explicitly 
$stmt->bindParam(':id', $id); // PDOStatement::bindValue() is also possibly
$stmt->bindParam(':value', $value);
$stmt->execute();
// or bind when executing the statement
$stmt->execute(array(
    ':id'    => $id,
    ':value' => $value
));