我有一个默认控制器:
类Home扩展CI_Controller {
public function index()
{
$data['content']='discover';
$this->load->view('layouts/master', $data);
}
public function categories()
{
$this->load->view('categories');
}
}
在单击时,使用AJAX,我能够加载视图c
我正在寻找一种方法,将jQuery与使用模板引擎逐位构建的脚本index.php一起使用,如下所示:
<?php
global $template;
page_header(); // Calls and displays header.html
$template->load('body', 'index.html'); // Loads index.html and calls it 'body'
*Code that assigns values to variables in index.html*
$templat