File: /home/awaldron/_domains/thecasinocrusher.com/application/controllers/Investors.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Investors extends CI_Controller {
public function index()
{
$data = array(
'pageTitle' => 'Investors',
'pageDesc' => 'Let the Casino Crusher play for you and earn you money. You supply the money and we do the betting.',
'tabOn' => 'investors'
);
$this->load->view('_header', $data);
$this->load->view('investors', $data);
$this->load->view('_footer', $data);
}
}