load->database(); $this->table = 'whlabelbarcode'; $this->load_table('whlabelbarcode'); } public function get_sku($sku) { return $this->find("sku = '$sku'"); } public function get_number($number,$warehouse) { return $this->find("number = '$number' and warehouse = '$warehouse'"); } public function get_title($title) { return $this->find("title like '%$title%'"); } public function get_skulabel($sku,$label) { return $this->find("sku = '$sku' and label = '$label'"); } } //end class