view = $path["view"] . "collection.php"; $s = "SELECT id " . "FROM monster_base " . "ORDER BY name; "; $q = mysqli_query($this->db, $s); while ($r = mysqli_fetch_array($q)){ array_push($this->base_monster, new Monster_Base($this->db, $r["id"])); } $this->title = ""; $this->name = ""; $this->description = ""; $this->favicon = ""; $this->icon = ""; $this->canonical = $root . "/collection/"; $this->author = $root . "/collection/"; } } ?>