Files
BE_CPONE/application/controllers/v1/su/Calc.php
2026-04-27 10:26:26 +07:00

14 lines
254 B
PHP

<?php
class Calc extends CI_Controller
{
function index() {
$id = 946;
echo "<pre> $rows";
}
function auto($id) {
$this->load->library("Resultcalc");
$rows = $this->resultcalc->auto($id);
echo "<pre> $rows";
}
}