CakePHP two forms next to eachother instead of below eachother
- by Jarno wildenaar
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!