Twój kod wydaje się poprawny, z wyjątkiem konstruktora twojego connection
klasy, zapomniałeś użyć $this
, zmień go na coś takiego:
public function __construct() {
$this->conn = new mysqli($this->hostname, $this->username, $this->password, $this->database)or die("MySQL Connection Error");
}