I am starting to learn CodeIgniter. I see some advantages, for example. MVC conventions. But in many cases, I donβt see how CI helps me grow faster.
For example, this
$attributes = array('class' => 'email', 'id' => 'myform'); echo form_open('email/send', $attributes);
can use instead
<form method="post" accept-charset="utf-8" action="http:/example.com/index.php/email/send" class="email" id="myform" />
I do not understand why this should be faster.
In addition, there are HTML helpers for creating <h1> tags. I do not see the benefits of using an assistant here.
So why should I use these types of helpers?
source share