CodeIgniter PHP Framework – Need to get query string

You can get it like this:

$this->input->get('some_variable', TRUE);

See this for more info.

Leave a Comment