CodeIgniter 不起作用

发布于 2024-11-06 20:09:31 字数 594 浏览 1 评论 0原文

因此,我听说了 CodeIgniter,并下载了它。我尝试安装 CodeIgniter,但 CodeIgniter 不起作用。我在 application/contollers 中以文件名 new.php 编写了代码:

class New extends Contoller 
{  
   function index()
   {
      echo "Hello word";
   }
}  

然后我进入 http://localhost /ci/index.php/New/,但我什么也没看到。我尝试了一个链接: http://localhost/ci/index.php/New/index.html php,但我没有看到任何东西。

请帮助我!

编辑:我使用uWamp,有Apache、MySQL和PHP。我的CodeIgniter版本是2.0.2。

So, I heard about CodeIgniter and I downloaded this. I tried to install CodeIgniter, but CodeIgniter doesn’t work. I writed a code in application/contollers in file name new.php:

class New extends Contoller 
{  
   function index()
   {
      echo "Hello word";
   }
}  

Then I went in http://localhost/ci/index.php/New/, but I didn’t see anything. I tried a link: http://localhost/ci/index.php/New/index.php, but I didn’t see anything.

Help me, please!

EDIT: I use a uWamp, there are Apache, MySQL and PHP. My CodeIgniter version is 2.0.2.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

酒浓于脸红 2024-11-13 20:09:31

如果您使用的是 Codeigniter 2.x,

class New extends CI_Controller

请确保将文件命名为小写。类名必须大写,但文件名小写。

If you are using Codeigniter 2.x then

class New extends CI_Controller

And make sure you name the file lowercase. Class name must be uppercase, but file name lowercase.

你在看孤独的风景 2024-11-13 20:09:31
class Newz extends CI_Controller {

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

    public function index()
    {
       echo "Hello";
    }
}
class Newz extends CI_Controller {

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

    public function index()
    {
       echo "Hello";
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文