Ejemplo n.º 1
0
 public function saveNote($orderID, $noteBy, $note)
 {
     $objThis_m = new c_data();
     $objThis_v = new c_view();
     $s_sql = "insert into braddoro.dyn_eve_mining_order_note (orderID, noteBy, note, notedate) select {$orderID}, '{$noteBy}', '{$note}', now();";
     $q_data = $objThis_m->getData($s_sql);
     return $this->showNote($orderID, $s_sql);
 }
Ejemplo n.º 2
0
 public function main()
 {
     $objThis_M = new c_data();
     $q_getData = $objThis_M->output();
     $objThis_V = new c_view();
     $s_main = $objThis_V->output($q_getData);
     return $s_main;
 }