Error Class Controller not found in CodeIgniter

前端 未结 3 789
离开以前
离开以前 2021-01-21 09:14

Hello, I am getting Controller not found error in CodeIgniter. This is my Controller code



        
3条回答
  •  庸人自扰
    2021-01-21 09:45

    i faced the same problem as you, and i solved it as simple as possible just by replacing the word Controller in the line of extending parent class by CI_Controller and it's work probably and here is the solution in your code

    load->view('index_view');
      }
    
      function hello() {
        $this->load->view('hello_view');
      }
    
    }
    ?>
    

    and your code will execute

提交回复
热议问题