- <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
- class Model_whlabel_fc extends Lin_Model
- {
- function __construct(){
- parent::__construct();
- $this->load->database();
- $this->table = 'whlabel_fc';
- $this->load_table('whlabel_fc');
- }
- public function get_wid($wid)
- {
- return $this->find("wid = '$wid'");
- }
- } //end class
|