More work done on search filter option

This commit is contained in:
Peter Goodhall
2019-09-04 23:42:11 +01:00
parent 5d1c13efab
commit d1b5db4ef2
4 changed files with 49 additions and 0 deletions

View File

@@ -14,6 +14,12 @@ class Search extends CI_Model {
return $query;
}
function get_table_columns() {
$query = $this->db->query('DESCRIBE '.$this->config->item('table_name'));
return $query;
}
}
?>