view = $path["view"] . "collection.php"; $s = "SELECT id " . "FROM monster_base " . "ORDER BY name; "; $q = $this->db->query($s); while ($r = $q->fetchArray(SQLITE3_ASSOC)){ 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; } } ?>