load->library("SsPriceMou"); $rst = $this->sspricemou->create($mouID); print_r($rst); echo "\n"; } function fix_all() { $this->load->library("SsPriceMouPx"); $sql = "select * from m_mou where M_MouIsActive = 'Y' "; $qry = $this->db->query($sql); $rows = $qry->result_array(); foreach($rows as $idx => $r ) { echo "$idx. Proses : " . $r["M_MouName"] . "\n"; $this->sspricemoupx->create($r["M_MouID"]); } } }