Código PHP:
$mysqli = new mysqli('localhost','user','pass','db');
$query = "INSERT INTO mensages (de,correo,asunto,contenido,fecha) VALUES (?, ?, ?, ?, ?)";
$stmt = $mysqli->prepare($query);
$stmt->bind_param('ssssi',$this->username, $this->email, $this->asunto, $this->mensaje, $this-fecha);
¿Alguien me puede ayudar a solucionar este error?