Welcome Guest, Not a member yet? Register   Sign In
Concate two post variables
#1

[eluser]Noah_Igniter[/eluser]
Code:
$inputdata['first_name'] = $this->input->post('first_name');
       $inputdata['last_name'] = $this->input->post('last_name');

i need to concate the two variables and save in table as "display_name"
please help me
#2

[eluser]solid9[/eluser]
$fname = $this->input->post('first_name');
$lname = $this->input->post('last_name');

$this->data['fullname'] = $fname.$lname;




Theme © iAndrew 2016 - Forum software by © MyBB