In cakePHP, if you are using default render elements of cakePHP, then wrappers are automatically add. For removing wrappers from HTML element use the following syntax:-
Form->input('email_address', array(
'div'=>false, 'label'=>false)); ?>
By this you can remove label and wrapper div as well.
0 Comment(s)