close
1. 到 application/controllers 複製 welcome.php 到 hello_world.php
2. 編輯 hello_world.php
2.1 修改 class name
class welcome => class hello_world
2.2 修改載入的 view
原本: $this->load->view('welcome_message');
修改為: $this->load->view('hello_world');
3. 到 application/views 複製 welcome_message.php 到 hello_world.php
4. 編輯 hello_world.php
隨便打上測試訊息
<h1>hello world!</h1>
5. 檢視結果
http://localhost/index.php/hello_world
註: /application/views 可以依需求自行建立目錄
存取時加上目錄名稱就可以了
如 /application/views/header/header.php
存取時就是 $this->load->view("header/header");
全站熱搜