db = $database->getConnection(); $this->queries = include('queries.php'); } // list of all conferences public function conferences_all_formatted() { $sql = $this->queries['conferences_all_formatted']; $query = $this->db->prepare($sql); $query->execute(); return $query; } } ?>