今天來把model部份搞定
這次資料庫只要做一個事情,
把帳號密碼輸入後,去撈撈看資料庫是否有這個資料!
如果沒有資料返回登入 如果有在session寫入權限!!
如何提取資料呢???
where + get 很簡單
把帳號密碼丟進陣列去撈資料庫就這樣所以只有一個方法
models/users_sql.php
<?php
class users_sql extends CI_Model{
function __construct() {
parent::__construct();
$this->load->database();
}
function where_array($array,$tbale){
$query = $this->db->where($array)->get($tbale);
return $query;
}
}
?>
今天就這樣!
10/10 各位放假快樂~~!
待續......