我想知道如果有人能讓我知道他們如何處理CodeIgniter中的成功/失敗消息。CodeIgniter - 顯示成功或不成功的消息
例如,當用戶登錄到我的網站,這是林目前做在控制器中會發生什麼
if (!is_null($data = $this->auth->create_user($this->form_validation->set_value('username'), $this->form_validation->set_value('password')))) {
// Redirect to the successful controller
redirect('create-profile/successful');
} else {
// Redirect to the unsuccessful controller
redirect('create-profile/unsuccessful');
}
然後在同一個控制器(創建姿態),我有2個這是像下面這樣的
function successful()
{
$data['h1title'] = 'Successful Registration';
$data['subtext'] = '<p>Test to go here</p>';
// Load the message page
$this->load->view('message',$data);
}
該問題的方法是,我可以簡單地去site.com/create-profile/successful,它會顯示該頁面。
如果有人可能會告訴我一個更好的方式來處理這個,它將不勝感激。
乾杯,
考慮使用閃光燈會話數據。只要檢測到會話數據,打印警報或成功消息就會更加高效,而不是爲每次成功/失敗都創建單獨的頁面。 – user482594