Cakephp

How remove the title from the input field in cakephp


How remove the title from the input field in cakephp

To remove the title from the input field in cakephp  go from:

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

to

echo $form->input('title', array('label' => false));

Published: 1st June 2016 by

Adverts