policybot/application/models/Faq_model.php

22 lines
409 B
PHP
Raw Normal View History

2021-11-30 10:56:55 +00:00
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
class Faq_model extends CI_Model {
public function __construct() {
parent::__construct();
}
function list_faq($id=0)
{
$this->db->select('*');
$this->db->from('faq');
if($id!=0){ $this->db->where('id',$id); }
$query = $this->db->get();
//echo $this->db->last_query();exit;
return $query;
}
}