I'm having problems with my execution for inserting item into MYSQL
I currently have this code
$save = $dbh->prepare("INSERT INTO tables(id,id2,datetime) VALUES(?,?,?)");
$save -> execute($id,$id2, "UNIX_TIMESTAMP()");
This gives me problems
PDOStatement::execute() expects at most 1 parameter, 3 given