我喜欢通过这样的 URL 将变量传递给控制器:
a href="<?php print base_url('/profile/' . $this->session->userdata('id')); ?>">Profiel</a>
/profile/ = 控制器
$this->session->userdata('id') = 变量
现在我想把它交给 Profile 但它只在我做 /profile/index/1 时才有效,我喜欢这样:/profile/1
什么时候真正使用新的控制器?
这是我的控制器:
<?php
class Profile extends CI_Controller
{
function __construct()
{
parent::__construct();
$this->load->library('login');
$this->load->helper('url');
}
function index()
{
$this->load->view('profile_view');
}
}
?>