add flutter

This commit is contained in:
Ariska
2026-03-11 15:29:37 +07:00
parent c253e1a370
commit 619d758027
9490 changed files with 135801 additions and 1353 deletions
+3 -1
View File
@@ -59,6 +59,7 @@ class Driver extends CI_Controller
$this->form_validation->set_rules('tgl_lahir', 'tgl_lahir', 'trim|prep_for_form');
$this->form_validation->set_rules('gender', 'gender', 'trim|prep_for_form');
$this->form_validation->set_rules('alamat_driver', 'alamat_driver', 'trim|prep_for_form');
$this->form_validation->set_rules('reg_id', 'reg_id', 'trim|prep_for_form');
if ($this->form_validation->run() == TRUE) {
@@ -76,7 +77,8 @@ class Driver extends CI_Controller
'tempat_lahir' => html_escape($this->input->post('tempat_lahir', TRUE)),
'tgl_lahir' => html_escape($this->input->post('tgl_lahir', TRUE)),
'gender' => html_escape($this->input->post('gender', TRUE)),
'alamat_driver' => html_escape($this->input->post('alamat_driver', TRUE))
'alamat_driver' => html_escape($this->input->post('alamat_driver', TRUE)),
'reg_id' => html_escape($this->input->post('reg_id', TRUE))
];