function callbackdata(){
$userid = $this->self_session->userdata('userid');
$data['username'] = $this->input->post("username");
$data['qq'] = $this->input->post("QQ");
$data['phone'] = $this->input->post("phone");
$data['school'] = $this->input->post("school");
$data['depart'] = $this->input->post("department");
$data['say'] = $this->input->post("say");
$data['is_show'] = $this->input->post("competence");
$result = $this->Mpersonalpage->modify_data($userid ,$data);
if ($result === FALSE){
show_error('<font color=red>修改信息时发生错误</font>',401);
return ;
}
$this->Mglobal->show('操作成功','修改信息成功!',site_url('personalpage'));
$this->output->enable_profiler(TRUE);
}