12345678910111213141516171819202122232425262728 |
- <?php
- !defined('BASEPATH') && exit('No direct script access allowed');
- class Example extends MY_Main_Controller
- {
- public function __construct()
- {
- parent::__construct();
- $this->load->model('example_model','example');
- }
- public function index()
- {
-
- $data['ex1'] = $this->example->all('1');
- $data['ex2'] = $this->example->all('2');
- $data['ex3'] = $this->example->all('3');
- $data['ex4'] = $this->example->all('4');
- $data['ex5'] = $this->example->all('5');
- $data['ex6'] = $this->example->all('6'); // 智慧消防
- $this->load_view($data);
- }
- }
- ?>
|