db->query($s); $set = false; while ($r = $q->fetchArray(SQLITE3_ASSOC)){ if ($set == false){ $this->target_stars = $r["target_stars"]; $this->source_stars = $r["source_stars"]; $this->source_level = $r["source_level"]; $this->target = new Monster($this->db, $r["target"]); $set = true; } array_push($this->source, new Monster($this->db, $r["source"])); } } } ?>