爲什麼笨使用重定向後,我有這樣的錯誤:錯誤310(淨值:: ERR_TOO_MANY_REDIRECTS)
Error 310 (net::ERR_TOO_MANY_REDIRECTS): There were too many redirects.
如果使用這樣的:redirect('admin/hotel/insert', 'refresh');
,刷新頁面,馬不停蹄,爆裂。
我該怎麼辦?
我在控制器hotel
碼(function
):
function insert(){
$this->load->view('admin/hotel_submit_insert');
$today = jgmdate("j F Y");
$data = array (
'name' => $this->input->post('name', TRUE),
'star' => $this->input->post('star', TRUE),
'address' => $this->input->post('address', TRUE),
'number_phone' => $this->input->post('number_phone', TRUE),
'fax' => $this->input->post('fax', TRUE),
'site' => $this->input->post('site', TRUE),
'email' => $this->input->post('email', TRUE),
'useradmin' => $this->input->post('useradmin', TRUE),
'date' => $today ,
);
$this->db->insert('hotel_submits', $data);
redirect('admin/hotel/insert'); // after use of this
}
對於
您可能需要爲重定向停止條件。插入後不是將用戶重定向到同一頁嗎?由於這個原因,您還可以檢查數據庫現在是否已滿空記錄。 – s3v3n
是的,插入後它會進入同一頁面。解釋更多。我需要更改代碼嗎? –