I am new Cakephp and facing prob. customizing the default input
function.
when I am using the below code:
<?php echo $form->input('title', array('size' => '40'))?>
the output is below:
<div class="input text required"><label for="NoteTitle">Title</
label><input name="data[Note][title]" type="text" size="40"
maxlength="50" value="" id="NoteTitle" /></div>
but i want this in this below format:
<tr>
<td align="right" valign="top" class="tbllogin">Title :</td>
<td><input name="data[Note][title]" type="text" size="40"
value="" id="NoteTitle" class="inplogin"></td>
</tr>
How to do this using input function?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---