12 lines
267 B
PHP
12 lines
267 B
PHP
<?php
|
|
class Test extends MY_Controller
|
|
{
|
|
function __construct() {
|
|
parent::__construct();
|
|
$this->db = $this->load->database("onedev", true);
|
|
}
|
|
function index() {
|
|
echo json_encode( array("status" => "OK" , "message" => "ok message"));
|
|
}
|
|
}
|