如何避免输入标签

时间:2011-12-10 02:28:01

标签: cakephp

我在cake php中有这个代码,但它会生成一堆标签以及我不喜欢的输入。我怎么能摆脱他们?我只想要输入。

echo $this->Form->hidden('user_role', array('value'=> '2'));
echo $this->Form->input('user_username');
echo $this->Form->input('user_password', array('type' => 'password'));
echo $this->Form->input('user_fname');
echo $this->Form->input('user_lname');
echo $this->Form->input('user_email');
echo $this->Form->input('user_phone');
echo $this->Form->input('user_cellphone');
echo $this->Form->input('user_address1');
echo $this->Form->input('user_address2');
echo $this->Form->input('user_city');
echo $this->Form->input('user_zip');
echo $this->Form->end('Submit');

谢谢

1 个答案:

答案 0 :(得分:16)

标签有利于实用性。但您可以在每个表单字段中删除它们,添加以下内容:

$this->Form->input('user_username', array( 'label' => false ));

您还可以在创建表单时默认禁用标签:

$this->Form->create('User', array('inputDefaults' => array('label' => false)));

其网站提供的更多信息: