在使用CakePHP创建的应用程序中的Web表单上,而不是列名作为标签(在输入文本字段旁边),我需要显示字段注释。
你能告诉我哪种方法最好吗?
答案 0 :(得分:1)
您可以使用此代码:
echo $this->Form->input('field', array(
'before' => 'Description of the field',
'label' => false
));
它将输出:
<div class="input">
Description of the field
<input name="data[Model][field]" type="text" value="" id="ModelField" />
</div>