我現在面臨使用重定向_construct功能, 在時間表控制器有問題我寫了下面的代碼和我得到的瀏覽器「重定向不笨_construct功能工作
此問題可能出現錯誤有時通過禁用或拒絕接受 餅乾 引起的。
這裏是我的代碼
class Timesheet extends MY_Controller {
public function __construct()
{
parent::__construct();
$this->load->model('timesheet_model');
//$this->load->library('auth');
$username=$this->session->userdata('logged_in');
//$this->load->model('login_model');
if($username['fullname']!=""){
redirect('timesheet');
}
else{
redirect('login');
}
}
請幫我找到擺脫這個問題的方法。 謝謝。
雅感謝。我幾分鐘前才意識到。我在回答中提到了它。感謝你的回答。 – Hriju