You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
384 B
26 lines
384 B
12 years ago
|
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||
|
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*
|
||
|
*/
|
||
|
class Misal extends CI_Controller {
|
||
|
//put your code here
|
||
|
|
||
|
public function index() {
|
||
|
|
||
|
$this->load->model("Modelamca");
|
||
|
echo $this->Modelamca->al();
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
echo 'ea';
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
/* End of file welcome.php */
|