我正在尝试在另一个if语句中使用if,但是出现了一些错误

时间:2019-09-11 04:58:52

标签: php if-statement

如果要在if循环中使用,但要得到一些错误黑页,请尝试检查并帮助我

public function login2($otp) {

    $this->db->where('otp', $otp);  

    $query = $this->db->get('login');

    if ($query->num_rows() == 1)  
    {
    //$this->load->view('index');   

         if ($role=='1' && $type=='1')
            {
              $this->load->view('index');
            }

        else if ($role=='2' && $type=='1')
            {
              $this->load->view('admin/index');
            } 
    }
    else
    {
        $_SESSION['error']='Wrong OTP Plese Enter correct OTP';
        $this->load->view('otp');
    }
}

1 个答案:

答案 0 :(得分:0)

您可以回显if条件中使用的变量的内容吗?检查它们是否符合您的陈述。除非它们是全球性的,否则我看不到它们的填充位置。