HEX
Server: Apache
System: Linux www3.pit.tblive.com 5.14.0-687.38.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 12 17:19:12 EDT 2026 x86_64
User: awaldron (1020)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/awaldron/public_html/archive/fifthace/application/controllers/about.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class About extends CI_Controller {
 
	function index()
	{
		$data = array();
		$data['title'] = "About Us";
		$data['desc'] = "About the people and services offered by Fifth Ace Entertainment in Pittsburgh";
		$data['nav'] = "about";
		$data['bg'] = $this->session->userdata('bg');

		$this->load->view('_head',$data);
		$this->load->view('v_about',$data);
		$this->load->view('_foot',$data);
	}
	
	function djs() {
		$data = array();
		$data['title'] = "Meet Our DJs";
		$data['desc'] = "Meet the DJs, those who entertain the masses for Fifth Ace Entertainment in Pittsburgh";
		$data['nav'] = "about";
		$data['bg'] = $this->session->userdata('bg');

		$this->load->view('_head',$data);
		$this->load->view('v_djs',$data);
		$this->load->view('_foot',$data);
	}
	
	function testimonials() {
		$data = array();
		$data['title'] = "Client Tesimonials";
		$data['desc'] = "We've had a lot of great clients over the years, here's what they had to say about Fifth Ace Entertainment in Pittsburgh!";
		$data['nav'] = "about";
		$data['bg'] = $this->session->userdata('bg');

		$this->load->view('_head',$data);
		$this->load->view('v_testimonials',$data);
		$this->load->view('_foot',$data);
	}
}


/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */