Welcome Guest, Not a member yet? Register   Sign In
Page Refresh poblem
#3

[eluser]Swayam[/eluser]
Code:
function edit_details()
{

   $e_uname = $this->input->post('e_uname');
   $e_fname = $this->input->post('e_fname');
  $e_emailid = $this->input->post('e_emailid');
   $e_address = $this->input->post('e_address');
   $e_city = $this->input->post('e_city');
   $e_contact = $this->input->post('e_contact');
  $data = array('uname'=>$e_uname,'fname'=>$e_fname,'emailid'=>$e_emailid,'address'=>$e_address,'city'=>$e_city,'contact'=>$e_contact);
   $sid = $this->session->userdata('id');
  $this->load->model('dbmodel');
  $this->dbmodel->update_entry($data,$sid);
  //echo "Your profile is updated successfully";
  $this->load->view('home');

}
this is my controller function..this function is called on the form action of edit page..


Messages In This Thread
Page Refresh poblem - by El Forum - 09-07-2012, 04:32 AM
Page Refresh poblem - by El Forum - 09-07-2012, 05:56 AM
Page Refresh poblem - by El Forum - 09-07-2012, 06:02 AM
Page Refresh poblem - by El Forum - 09-07-2012, 06:44 AM
Page Refresh poblem - by El Forum - 09-07-2012, 06:52 AM
Page Refresh poblem - by El Forum - 09-07-2012, 07:01 AM
Page Refresh poblem - by El Forum - 09-07-2012, 07:25 AM



Theme © iAndrew 2016 - Forum software by © MyBB