20 lines
547 B
PHP
20 lines
547 B
PHP
<?php
|
|
class Ss extends CI_Controller
|
|
{
|
|
function __construct() {
|
|
parent::__construct();
|
|
//$this->db = $this->load->database('regional', true);
|
|
$this->db = $this->load->database('onedev', true);
|
|
}
|
|
function create($mouID) {
|
|
$this->load->library("SsPriceMou");
|
|
$result = $this->sspricemou->create($mouID);
|
|
print_r($result);
|
|
}
|
|
function edit($mouID,$testID,$cito) {
|
|
$this->load->library("SsPriceMou");
|
|
$result = $this->sspricemou->edit($mouID,$testID,$cito);
|
|
print_r($result);
|
|
}
|
|
}
|