VM暫存
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627
  1. <?php
  2. defined('BASEPATH') OR exit('No direct script access allowed');
  3. class Cario_data extends CI_Controller {
  4. public function __construct() {
  5. parent::__construct();
  6. $this->load->model('reports/Erpapidb_model','erpapidb');
  7. }
  8. public function index()
  9. {
  10. $sel_cario_api=$this->erpapidb->sel_cario_api();
  11. print_r(json_encode($sel_cario_api)) ;
  12. }
  13. }