PHP Classes

File: config.php

Recommend this page to a friend!
  Classes of Jim Worthen   EMovies   config.php   Download  
File: config.php
Role: Configuration script
Content type: text/plain
Description: Allows user to configure the script for their server.
Class: EMovies
Retrieve information about movies from Yahoo
Author: By
Last change:
Date: 17 years ago
Size: 665 bytes
 

Contents

Class file image Download
<?php
###########################
#
# EMovies Pro
# Coder: FrosT
# EMail: Frost110@gmail.com
# File: config.php
# Description:
# Holds the configuration variables.
###########################

// Set the title of the top table the Zip Code will display last.
$CONFIG['custom_title'] = 'EMovies Listings for %zip%';

// Head title
$CONFIG['head_title'] = 'Emocium EMovies Listings and Showtimes';

// Use Curl?
$CONFIG['use_curl'] = true;

// Server URL (ONLY Modify this if the code below does not work.)
// $CONFIG['server_url'] = "http://www.yoursite.com/installdir
$CONFIG['server_url'] = "http://".$_SERVER['HTTP_HOST'].'/movies';

?>