MySQL表中的注释而不是CakePHP中的名称

时间:2013-05-01 19:27:17

标签: php mysql cakephp cakephp-2.0

在使用CakePHP创建的应用程序中的Web表单上,而不是列名作为标签(在输入文本字段旁边),我需要显示字段注释。

你能告诉我哪种方法最好吗?

1 个答案:

答案 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>