Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove the title from input field in cakephp?

For an application, I am using cakephp with mysql.

I echo the existing contents from the table as:

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

echo $form->input('title');
?>

in the .ctp file.

This displays the title value retrieved from the table as well as 'title' near the text box. I do not want the word 'title' to be displayed near the text box.

How will I achieve this?

Thank you very much in advance.

like image 252
Lavanya Mohan Avatar asked Dec 22 '22 00:12

Lavanya Mohan


1 Answers

echo $form->input('title', array('label' => false));
like image 115
deceze Avatar answered Jan 11 '23 22:01

deceze