マシンに codeigniter が設定されていることを願っています。
たとえば、コントローラーフォルダーに1つのファイルを作成します: D:\wamp\www\demoProject\application\controllers\homePage.php
次のコードを homePage コントローラーに追加します
<?php
class HomePage extends CI_Controller {
var $controller = "homePage";
var $viewContent = array();
function list_homePage() {
// ビュー ページの読み込み // ヘッダー ビュー ページの読み込み
$this->load->view('xome/header');
// メイン ビュー ページを読み込む
$this->load->view('xome/list_' . $this->controller,
$this->viewContent);
// フッター ビュー ページを読み込む
$this->load->view('xome/footer');
}
}
?>
その後、たとえばビューフォルダーに1つのファイルを作成します:D:\wamp\www\demoProject\application\views\list_homePage.php
HTMLコードをビューファイルに入れます。
これがあなたを助けることを願っています... :)