PDO insert hatası

0 Cevap php

Ben çalışmak için aşağıdaki kodu almak için çalışıyorum .....

Hatası:

ERRORSQLSTATE[42000]: Syntax error or access violation: 1064 
You have an error in your SQL syntax; check the manual that 
corresponds to your MySQL server version for the right syntax 
to use near '?, ?, ?, ?)' at line 1

Kodu:

$data=array($idApplications,$author,$addedOn,$note);
try {
    $STH = $this->DBH->query('
      INSERT INTO '.$table.' (idApplications,Author,NoteAddedOn,Note) 
      VALUES (?, ?, ?, ?)
   ');
    $STH->execute($data);
}
catch(PDOException $e) {echo $e->getMessage();}
}   

(PHP PDO ve MySQL kullanarak)

Herhangi bir yardım mutluluk duyacağız!

Teşekkürler!

0 Cevap