[eluser]codedoode[/eluser]
I'm trying to do a basic CRUD app, and my code is listed below...
function create()
{
$data = array(
'firstname' => $this->input->post('firstname'),
'lastname' => $this->input->post('lastname'),
'fullname' => $this->input->post('firstname') + ('lastname'),
'company' => $this->input->post('company'),
'title' => $this->input->post('title'),
'address' => $this->input->post('address'),
'address2' => $this->input->post('address2'),
'city' => $this->input->post('city'),
'state' => $this->input->post('state'),
'zip' => $this->input->post('zip'),
'office' => $this->input->post('office'),
'mobile' => $this->input->post('mobile'),
'fax' => $this->input->post('fax'),
'email' => $this->input->post('email'),
'comments' => $this->input->post('comments')
);
Why doesn't this work 'fullname' => $this->input->post('firstname') + ('lastname'), ??? what am I doing wrong?