je zou kunnen doen, stel het in op NULL
voor het geval het leeg is, zoals:
$company_phone = $this->input->post('company_phone');
...
'company_phone' => (!empty($company_phone)) ? $company_phone : NULL,
...
je zou kunnen doen, stel het in op NULL
voor het geval het leeg is, zoals:
$company_phone = $this->input->post('company_phone');
...
'company_phone' => (!empty($company_phone)) ? $company_phone : NULL,
...