我是 CodeIgniter 的新手。谁能向我解释如何在控制器中加载视图?
这是我的控制器:
<?php
class Example extends CI_controller
{
function display($p,$p1)
{
echo $p1,$P;
//here i want to load my view
}
}
?>
我是 CodeIgniter 的新手。谁能向我解释如何在控制器中加载视图?
这是我的控制器:
<?php
class Example extends CI_controller
{
function display($p,$p1)
{
echo $p1,$P;
//here i want to load my view
}
}
?>