Using CakePHP FormHelper with Bootstrap Forms

前端 未结 9 616
天命终不由人
天命终不由人 2020-12-12 14:56

CakePHP\'s FormHelper is how you generate forms when making CakePHP applications. As one might assume, this includes generating input elements, like so:

$thi         


        
9条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-12 14:56

    small add for another comments:

    if you whant add class and change label base text, you can write next

    Form->input('Fieldname', array(
        'label' => array('class' => 'control-label','text'=>'HERE YOU LABEL TEXT')
    )); ?>
    

提交回复
热议问题