Files
BE_IBL/application/controllers/tools/_xxDoctor.php
2026-04-15 15:23:57 +07:00

12 lines
270 B
PHP

<?php
class Testing 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"));
}
}