2011-05-14 195 views
1

所以,我聽說CodeIgniter,我下載了這個。我試圖安裝CodeIgniter,但CodeIgniter不起作用。我所著的應用/ contollers代碼的文件名new.php:CodeIgniter不起作用

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

然後我在http://localhost/ci/index.php/New/去了,但我沒有看到任何東西。我嘗試了一個鏈接:http://localhost/ci/index.php/New/index.php,但我沒有看到任何東西。

請幫幫我!

編輯:我使用uWamp,有Apache,MySQL和PHP。我的CodeIgniter版本是2.0.2。

回答

1

如果您正在使用笨2.X然後

class New extends CI_Controller 

並確保您將文件命名爲小寫。類名必須大寫,但文件名小寫。

1
class Newz extends CI_Controller { 

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

    public function index() 
    { 
     echo "Hello"; 
    } 
} 
+0

我認爲「新」是保留字 – Ivan 2011-05-14 07:58:36