English 中文(简体)
“无法装载所要求档案”
原标题:"Unable to load the requested file"

使用XAMPP 1.7.7 的2.0.3号识别法 我的代码是: Unable toload the requested file: home.php

The home.php 编码如下:

class Home extends CI_Controller {

    function Home()
    {
        parent::__construct();   
    }

    function index()
    {
        $this->load->view( home );
    }
问题回答

仅使用通知:

  1. 控制器名称home.php

  2. 文件home.php必须载于ci/views

  3. Incase file extention in view folder is not php eg like its html. then load it using : $this->load->view( home.html );

  4. the function u need to call from outside must be public So make it: public function index() {... }

as u are calling the constructor for the class Home. Call it like:

class Home extends CI_Controller {

function __construct()
{
    parent::__construct();   
}

public function index()
{
    $this->load->view( home );
}

我们现在的工作!

页: 1 这可以找到。

I m assuming you re calling http://myapp/index.php/home/ - that means it ll automatically call the index() method.

class Home extends CI_Controller
{
    function __construct()
    {
        parent::__construct();   
    }
    function index()
    {
        $this->load->view( home );
    }   
}

Please check the name of the file you have created in application/views/, because otherwise the code is correct.





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签