我必须创建一个这样的表单:
姓名:输入您的姓名。我在 cakephp 中使用“之前”、“之后”和“之间”表单选项,但它给了我一个错误。
下面是我在 cakephp 中的代码。
echo $this->Form->create('Post');
echo $this->Form->input('Post.title',
array(
'before' => array('label' => array(
'class' => 'thingy',
'text' => 'Title :'
)
),
'after' => array(
'label' => array(
'class' => 'thingy',
'text' => 'Title :'
)
),
'between' => array(
'id' => 'posttitle',
'size' => '50',
'maxlength' => '255',
'error' => false,
'class'=>'field'
)
)
);