$countries = ['USA' => 'United States', 'GBR' => 'Great Britain', 'CAN' => 'Canada']; echo CHtml::dropDownList('country', '', CHtml::listData($countries, 'id', 'name')); // Outputs a HTML select list with options: // // //
$colors = ['R' => 'Red', 'G' => 'Green', 'B' => 'Blue']; echo CHtml::radioButtonList('color', '', CHtml::listData($colors, 'id', 'name')); // Outputs a list of radio button options with labels: // // //The CHtml class is part of the Yii Framework, a popular open-source PHP web application framework.