Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,111 questions

40,781 answers

573 users

How to INSERT INTO a date ( NOW() ) with SQL in MySQL database with PHP Data Objects (PDO) in PHP

Learn & Practice SQL


117 views
asked May 27, 2015 by avibootz
edited Jul 7, 2015 by avibootz

1 Answer

0 votes
try 
{
    $inserted = $con->prepare("INSERT INTO users(firstname, lastname, dateadd)
        VALUES(:firstname, :lastname", NOW());

    $inserted->execute(array(
        "firstname" => $_POST['firstname'],
        "lastname" => $_POST['lastname']
    ));
}
catch (PDOException $e) 
{
    die($e->getMessage());
}




answered May 27, 2015 by avibootz
edited Jul 7, 2015 by avibootz
...