Adding Dynamic Data To A Drop Down List With Yii

echo $form->;dropDownList($model,‘country’, CHtml::listData(Modelname::model()->findAll(), ‘value’, ‘id’), array(‘empty’=>;’–please select–’));

<?php

$suit = Yii::app()->common->listParameter(‘Nature Of Suit’, Yii::app()->language);

echo $form->dropDownList($model, ‘nature_of_suit’, $suit, array(

		                                                                         'empty'    =&gt; '-- Select--',


		                                                                         'style'    =&gt; 'width:150px;',


		                                                                         &quot;disabled&quot; =&gt; &#036;oldDisabled,


		                                                                         'options'  =&gt; &#036;suitDropDown


		                                                                      ));


		     ?&gt;

What was the issue?