Tengo el siguiente codigo que me da por error "Fatal error: Cannot pass parameter 6 by reference in"
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);
La variable fecha la defino previamente como $this->fecha = mktime().
¿Alguien me puede ayudar a solucionar este error?