I am trying to update my MySQL table but I keep getting this error:
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 'INTO kh_comments (id, author, comment, 'timestamp', abstract, date_of_abstract) ' at line 1
This is how I am trying to update the table kh_comments:
public function prepare($author, $arr) {
    $conn = new mysqli($this->servername, $this->username, $this->password, $this->db_name);
    foreach ($arr as $value) {
        if ($stmt = $conn->prepare("UPDATE INTO kh_comments (id, author, comment, timestamp, abstract, date_of_abstract) VALUES (?, ?, ?, ?, ?, ?)")) {
            $stmt->bind_param('dssdss', '1', $author, '', 0, $value['id'], $value['date']);
        }
        else {
            echo $conn->error;
        }
    }
}
How can I fix this?
 
     
     
     
     
     
     
    