Cloudlog/application/models/Lotw.php

16 行
202 B
PHP

2014-03-04 01:28:33 +08:00
<?php
class LOTW extends CI_Model {
function __construct()
{
// Call the Model constructor
parent::__construct();
}
function empty_table($table) {
$this->db->empty_table($table);
}
}
?>