Hey,
I was wondering, is there any easy way to have the html generated by codeigniter be more structured and more readable? For example, if I do this:
echo form_open('do/send',array("id" => "contact_form"));
echo form_label("Name:", "name");
echo form_input(array("name" => "name"));
echo form_submit("submit", "Submit");
echo form_close();
The html generated will be in one single line and no structure. I could do something like this:
echo form_submit("submit", "Submit")."\n";
But that's not really practical.
Any ideas?