Ben CodeIgniter tarafından oluşturulan html daha planlı ve daha okunabilir olması için herhangi bir kolay yolu var, merak ediyorum? Örneğin, ben bunu yaparsam:
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 ("Gönder", "submit") "\ n".;
Ama bu gerçekten pratik değil.
Herhangi bir fikir?