我是CodeIgniter框架的新手。我正在使用2.1.4版本。我設計了一個簡單的登錄表單,一個javascript驗證和一個網站的主頁。您能否幫我理解如何聲明會話,以及如何通過單擊註銷鏈接來銷燬會話。登錄頁面的Code Igniter會話聲明
控制器文件(加載視圖頁面的login.php): -
class Login extends CI_Controller {
function __construct() {
parent::__construct();
$this->load->helper('url');
}
function index(){
$this->load->view('login');
}
function success() {
redirect ('home');
}
}
爲視圖home.php控制器文件home.php
class Home extends CI_Controller {
// local constructor will be overriding the one in the parent controller class
// for using a constructor in any of my Controllers
function __construct() {
parent::__construct();
}
public function index()
{
$this->load->view('home');
}
}
我已經設計查看頁面home.php,並給出退出鏈接: -
<div class="logout"><a href="">Signout</a></div>
爲了初始化會話,我需要知道,所有構造函數更改/配置更改需要什麼以及會話destoy的方法。