/** * Updates a Post in the database * * @param Post $post The post to be updated * @throws PDOException if a database error occurs * @return void */ public function update(Pincho $pincho) { $stmt = $this->db->prepare("UPDATE pincho set nombrePincho=?, descripcion=? , precio=?, celiaco=?, where id=?"); $stmt->execute(array($pincho->getNombrePincho(), $pincho->getDescripcionPincho(), $pincho->getPrecio(), $pincho->getCeliaco(), $pincho->getImagen())); }