Concrete5: Can I use $_GET variable for query string on Regular Page?
问题 How does $_GET Variable works with Concrete5? Can I use that on regular page? I know I can do this with single page via url segment, I'm just wondering if it is possible with regular page. Example is :http://www.domain_name.com/about-us/?name=test... 回答1: Get-parameters are available via the controllers. In the view of a page or block use: $this->controller->get("parameterName"); A cleaner way for custom parameters would be to define them in the function view() of the page controller. If at