Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

hi i would like to ask if it is possible to update the session data saved in the database in codeigniter,, for example. i have a session userdata(roleID,name,logged_in), so that when someone will login, ill just call the $data['name'] = $this->session->userdata('name'); and echo it in my header view as <?php echo $name; ?>,, the problem is when a user will update his firstname or lastname, and when i do this

$fname = $this->input->post('fname');
$lname = $this->input->post('lname');

$fullname = $fname." ".$lname;
$this->session->unset_userdata('name');
$this->session->set_userdata('name',$fullname);

it doesnt work..

//EDIT WORKING RIGHT NOW... JUST TYPO AND SYNTAX ERRROR

share|improve this question
1  
that second unset should read set_ right ? – David Chan May 26 '11 at 3:05
1  
oh im so dumb..its working ayt now.. :) thanks – kester martinez May 26 '11 at 3:15

1 Answer

up vote 2 down vote accepted

If you want to update the session data, use:

$this->session->set_userdata('name', $fullname);

There is no need to use unset_userdata More info here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.