18 lines
364 B
PHP
Executable File
18 lines
364 B
PHP
Executable File
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class Welcome extends CI_Controller {
|
|
|
|
public function index()
|
|
{
|
|
$this->load->view('welcome_message');
|
|
}
|
|
|
|
public function test(){
|
|
$this->load->library('TcOrc');
|
|
$img = '';
|
|
$result = $this->tcorc->BizLicense($img);
|
|
print_r($result);
|
|
}
|
|
}
|