Using CakePHP FormHelper with Bootstrap Forms

前端 未结 9 613
天命终不由人
天命终不由人 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 15:04

    Here's one way:

    Form->create(null, array(
        'inputDefaults' => array(
            'div' => array('class' => 'control-group'),
            'label' => array('class' => 'control-label'),
            'between' => '
    ', 'after' => '
    ', 'class' => '') )); ?>

提交回复
热议问题