Skip to content

Instantly share code, notes, and snippets.

@enyachoke
Created September 19, 2012 10:50
Show Gist options
  • Save enyachoke/3748980 to your computer and use it in GitHub Desktop.
Save enyachoke/3748980 to your computer and use it in GitHub Desktop.
Yii dropdown.
<div class="row">
<?php echo $form->labelEx($model,'CountryID'); ?>
<?php
echo $form->dropDownList($model,'CountryID',
CHtml::listData(Country::model()->findAll(), 'ID', 'Name'));
?>
<?php echo $form->error($model,'CountryID'); ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment