Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
- class Web extends CI_Controller {
- function __construct()
- {
- parent::__construct();
- session_start();
- }
- public function index()
- {
- $data['menu'] = $this->berita_model->menu_kategori('0','0');
- $this->load->view('web/br_top',$data);
- $this->load->view('web/br_home');
- $this->load->view('web/br_bottom');
- }
- }
- /* End of file web.php */
- /* Location: ./application/controllers/web.php */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement