File: /home/awaldron/_domains/thecasinocrusher.com/application/controllers/Blackjack.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Blackjack extends CI_Controller {
public function index()
{
$data = array(
'pageTitle' => 'Blackjack',
'pageDesc' => 'Let the Casino Crusher teach you how to beat the casino edge in Blackjack and make money everyday.',
'tabOn' => 'blackjack'
);
$this->load->view('_header', $data);
$this->load->view('blackjack', $data);
$this->load->view('_footer', $data);
}
}