Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于应用程序,我将 cakephp 与 mysql 一起使用。
我将表中的现有内容回显为:
<?php echo $form->create('Post',array('action'=>'edit')); echo $form->input('title'); ?>
在 .ctp 文件中。
这将显示从表中检索到的标题值以及文本框附近的“标题”。我不希望在文本框附近显示“标题”一词。
我将如何实现这一目标?
非常感谢您提前。
echo $form->input('title', array('label' => false));
echo $form->input('title', array('label' =>''));