TIF_E41201448/application/models/model.php

17 lines
219 B
PHP

<?php
class Model extends CI_Model {
function login($where = ''){
return $this->db->query("select * from user $where;");
}
function ambillevel(){
return $this->db->query("select level from user");
}
}
?>