[Solved] Getting variables past from URL

If I create a link using the following method:

<li><?php echo CHtml::link($item['name'], array('content/show', 'id'=>$item['id'], 'theme'=>$item['themeId']) ); ?></li>

What is the correct method I should be using to retrieve $_GET['theme'] in a controller or class?

http://www.yiiframew…getParam-detail

That did it.

Thank you for such a fast response.