23 lines
441 B
PHP
23 lines
441 B
PHP
<?php
|
|
if (!defined('BASEPATH'))
|
|
exit('No direct script access allowed');
|
|
|
|
class Testimonial_model extends CI_Model {
|
|
|
|
public function __construct() {
|
|
parent::__construct();
|
|
}
|
|
|
|
function list_testimonial($id=0)
|
|
{
|
|
$this->db->select('*');
|
|
$this->db->from('testimonial');
|
|
|
|
if($id!=0){$this->db->where(array('id'=>$id));}
|
|
$query = $this->db->get();
|
|
//echo $this->db->last_query();exit;
|
|
return $query;
|
|
}
|
|
|
|
}
|