|
1、在view中输入一些数据,点击提交后转到页面edit中进行处理;
2、在edit中完成插入到数据库,然后在从库中出去来,进行$this -> load ->view('show',$xxxx)操作;
3、在页面show中显示插入到数据库中(我所需要的,比如全部的name)的数据;
遇到的问题是在提交到edit中数据处理完之后,他就不执行$this -> load ->view('show',$xxxx)操作了,求解!
code controller:
class message extends CI_Controller{
public function __construct(){
parent::__construct();
}
public function edit(){
$arr =$_POST;
$this -> model->contrmsg();
$this ->contrmsg->insertmsg($arr);
$this -> contrmsg->showmsg();
$this -> load ->view('show');
}
}
|
|