Check Boxes issue

Hi i am very new to Yii Framework so i need your understanding :) My question is the following. How can i have the checkboxes at the code below checked by default ??




<?php echo CHtml::checkbox('languages[]',

	       in_array($val,(array)$item_data['languages'])?true:false

	      ,array(

	         'value'=>$val

	      ))?>

Thanks

Any luck here ?

You need read http://www.yiiframework.com/doc/api/1.1/CHtml#checkBox-detail




<?php echo CHtml::checkbox(

                             'language', 

                             true, // default as checked

                             array() //this is $htmlOptions

);


?>



Maybe you need CHtml::checkBoxList()

http://www.yiiframework.com/doc/api/1.1/CHtml#checkBoxList-detail