connect_db = @mysql_connect ($this->host, $this->username, $this->password); return true; } public function close () { MYSQL_CLOSE; } public function execute($query) { return mysql_db_query($this->db_name, $query, $this->connect_db); } }