<?php
class Db_model extends CI_Model {
public function __construct()
{
$this->load->database();//每次都會先load資料庫
}
//取單一值
public function get_onerow($id){
//指定條件,資料表
$query = $this->db->get_where('資料表',array('id'=>$id));
return $query->row_array();//把找到的結果轉成array
}
}
?>
沒有留言:
張貼留言