How to remove title from input field in cakephp?

For the application, I use cakephp with mysql.

I repeat the existing contents from the table as follows:

<?php echo $form->create('Post',array('action'=>'edit')); echo $form->input('title'); ?> 

in the .ctp file.

This displays the name obtained from the table, as well as the "title" next to the text box. I don’t want the word β€œtitle” to appear next to the text box.

How can i achieve this?

Thank you in advance.

+4
source share
2 answers
 echo $form->input('title', array('label' => false)); 
+10
source
 echo $form->input('title', array('label' =>'')); 
+1
source

Source: https://habr.com/ru/post/1401934/


All Articles