Creating a form with repetitive names is a pain:
No plans making a model-bindable form? I implemented a different structure in CI3 right now but the goal is to implement something like this:
It would be nice if CI4 has a template engine with these features.
PHP Code:
echo form_open('user/update'),
form_input('full_name', set_value('full_name', $user->full_name), array('id' => 'full-name', 'class' => 'full-name')),
form_input('email', set_value('email', $user->email), array('id' => 'email', 'class' => 'email')),
form_input('password', set_value('password', $user->password), array('id' => 'password', 'class' => 'password')),
form_close();
No plans making a model-bindable form? I implemented a different structure in CI3 right now but the goal is to implement something like this:
PHP Code:
echo bindable_form_open($user, 'user/update'),
//The key also generates both ID and class names.
form_input('full_name'),
form_input('email'),
form_input('password'),
bindable_form_close();
It would be nice if CI4 has a template engine with these features.