आपके connection
. के कंस्ट्रक्टर को छोड़कर, आपका कोड सही लगता है वर्ग, आप $this
. का उपयोग करना भूल गए हैं , इसे निम्न की तरह कुछ में बदलें:
public function __construct() {
$this->conn = new mysqli($this->hostname, $this->username, $this->password, $this->database)or die("MySQL Connection Error");
}