если вы хотите вставить строку «Джордж Курдахи» в БД, вам следует объединить строку с .
$data = array('name' => $this->input->post('first_name') . " " . $this->input->post('last_name'))
Или, если у вас есть поля «имя» и «фамилия» в БД:
$data = array('name' => $this->input->post('first_name'), 'surname' => $this->input->post('last_name'))