Cloudlog/application/models/Search_filter.php

18 wiersze
238 B
PHP
Czysty Zwykły widok Historia

2019-09-04 22:42:11 +00:00
<?php
class Search_filter extends CI_Model {
function __construct()
{
parent::__construct();
}
function get_table_columns() {
$query = $this->db->query('DESCRIBE '.$this->config->item('table_name'));
return $query;
}
}
?>