Hi all! I have a question, I'm making forms using form helper.

What's better, creating forms with tables or with divs? Divs are the only
way to create forms with the cakePHP form helper, right?

I'm not a css master :P, so maybe I don't understand very well why using
divs instead of tables in forms (I understand the difference when creating
nomal page content). The real problem is that I need to do something like
http://jquery.bassistance.de/validate/demo/milk/ but I don't want to have an
ugly code like:

<tr>
<td>
<?= $form->input(...) ?>
</td>
</tr>

etc.

I want:

<?
echo $form->create(...);
echo $form->input(...);
?>

etc. :P

Is that possible with tables? Can I make something like the link example
without tables?

Thanks for your attention x)

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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

Reply via email to