data = $_REQUEST; $this->query = $_SERVER['QUERY_STRING']; } function queryString() { return $this->query; } function __get($prop) { return $this->data[$prop]; } function __set($prop, $val) { $this->data[$prop] = $val; } }