connection
のコンストラクターを除いて、コードは正しいようです。 クラス、$this
を使用するのを忘れました 、次のように変更します。
public function __construct() {
$this->conn = new mysqli($this->hostname, $this->username, $this->password, $this->database)or die("MySQL Connection Error");
}
connection
のコンストラクターを除いて、コードは正しいようです。 クラス、$this
を使用するのを忘れました 、次のように変更します。
public function __construct() {
$this->conn = new mysqli($this->hostname, $this->username, $this->password, $this->database)or die("MySQL Connection Error");
}