|
楼主 |
发表于 2012-3-26 11:48:31
|
显示全部楼层
本帖最后由 小白TO大白 于 2012-3-26 11:49 编辑
sdink 发表于 2012-3-26 10:51
靠,从没见过,贴controllers
class Index extends CI_Controller {
private $page = 1; //当前显示的页数,默认为1
function __construct()
{
parent::__construct();
}
//显示问题列表
public function index()
{
$this->load->library('My_Smarty');
$this->My_Smarty->viewWithDefaultTemplate('home/index.tpl');
}}
|
|