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.
source share