14 lines
254 B
PHP
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";
|
|
}
|
|
}
|