File: /home/awaldron/_domains/thecasinocrusher.com/application/controllers/Home.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Home extends CI_Controller {
public function index()
{
$data = array(
'pageTitle' => 'Home',
'pageDesc' => 'The Casino Crusher is a Pittsburgh-based gaming expert who can teach you how to beat the casino\'s edge and make money.',
'tabOn' => 'home'
);
$this->load->view('_header', $data);
$this->load->view('home', $data);
$this->load->view('_footer', $data);
}
}