I am using code igniter
in order to generate elements. I want to have a form label
and an input box
on the same line.
However currently the input box is displayed below the label.
How can I ensure that the input box is on the same line as the label, and to its right.
<?php
echo form_label('Age: ','age');
echo form_input('userAge',"");
?>