CodeIgniter Forums
Concate two post variables - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Concate two post variables (/showthread.php?tid=55583)



Concate two post variables - El Forum - 11-02-2012

[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


Concate two post variables - El Forum - 11-02-2012

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

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