Form builder for CodeIgniter. Used https://github.com/wallter/codeigniter_bootstrap_form_builder and HMVC. You need to install HMVC for correct work with library.
- Load Libraries ==============
$this->load->helper('form');
$this->load->library('form_builder');
$this->load->library('form_loader');
- Load form ==============
$form = $this->form_loader->load('example', [
'submit_value' => 'Test',
], 'example', $this);
- Output form ==============
$output = $this->form_builder->open_form([
'action' => '',
'method' => 'POST',
'id' => 'test-form',
]);
$output .= $this->form_builder->build_form_horizontal($form);
$output .= $this->form_builder->close_form();
echo $output;