CakePHP two forms next to eachother instead of below eachother

Posted by Jarno wildenaar on Stack Overflow See other posts from Stack Overflow or by Jarno wildenaar
Published on 2010-06-01T11:27:56Z Indexed on 2010/06/01 11:33 UTC
Read the original article Hit count: 151

Filed under:
|

Im developing an form in cakePHP where i want to set two forms next to eachother. Im creating it using this code.

echo $form->input('timeback', array('options' => array('week',1,2,3,)));

This creates a dropdown. Followed by this code:

echo $form->end('submit');

This all works well, accept that these two forms should be next to eachother instead of below eachother.

Is there a way to make this happen?

Thanx in advance!

© Stack Overflow or respective owner

Related posts about forms

Related posts about cakephp