我想将其重定向到welcome/stats/3
,因为site_id
是3
function add_keyword()
{
$data = array(
'keyword' => $this->input->post('keywords'),
'depth' => $this->input->post('depth'),
'site_id' => $this->input->post('site_id')
);
$site_id = $this->input->post('site_id');
$this->site_model->add_keyword($data);
redirect('welcome/stats/', $site_id);
}
答案 0 :(得分:2)
您必须连接$site_id
,而不是将其作为第二个参数传递:
redirect('welcome/stats/' . $site_id);