//搜尋單筆資料
public function get_OneData($table,$th,$td){
$query = $this->db->where($th,$td)->get($table);
if($query->num_rows() == 1){
return $query->row_array();
}
return null;
}
//搜尋多筆資料
public function get_AllData($table,$th,$td){
$query = $this->db->where($th,$td)->get($table);
if($query->num_rows() > 0){
return $query->result_array();
}
return null;
}