Din kode virker korrekt, undtagen i konstruktøren af din connection
klasse, har du glemt at bruge $this
, ændre det til noget i stil med følgende:
public function __construct() {
$this->conn = new mysqli($this->hostname, $this->username, $this->password, $this->database)or die("MySQL Connection Error");
}