Codeigniter: get query string in value in controller

Suppose you hav a url like this:

http://localhost/marbone/admin/products/edit_color?color_id=8

and you need the color_id use the following code :

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

working-on-a-computer-smiley-emoticon