149 lines
5.6 KiB
PHP
149 lines
5.6 KiB
PHP
<?
|
|
###########################################
|
|
#-----------Users login system------------#
|
|
###########################################
|
|
/*=========================================\
|
|
Author : Mohammed Ahmed(M@@king) \\
|
|
Version : 1.0 \\
|
|
Date Created: Aug 20 2005 \\
|
|
---------------------------- \\
|
|
Last Update: August 22 2005 \\
|
|
---------------------------- \\
|
|
Country : Palestine \\
|
|
City : Gaza \\
|
|
E-mail : m@maaking.com \\
|
|
MSN : m@maaking.com \\
|
|
AOL-IM : maa2pal \\
|
|
WWW : http://www.maaking.com \\
|
|
Mobile/SMS : 00972-599-622235 \\
|
|
\\
|
|
===========================================\
|
|
------------------------------------------*/
|
|
// NEED TO CHECK AGAINST SERVER VERSION
|
|
|
|
//skip the config file if somebody call it from the browser.
|
|
session_start();
|
|
|
|
if (eregi("config.php", $_SERVER['SCRIPT_NAME'])) {
|
|
Header("Location: index.php"); die();
|
|
}
|
|
|
|
$main_table = "Coaches";
|
|
$field_lead = "coach_";
|
|
$site_url = "/coaches";
|
|
include("../local/settings.php");
|
|
$st_id = 22;
|
|
|
|
//added new code to fix compatibility issues.
|
|
//09-Nov-2005
|
|
$phpver = phpversion();
|
|
if ($phpver < '4.1.0') {
|
|
$_GET = $HTTP_GET_VARS;
|
|
$_POST = $HTTP_POST_VARS;
|
|
$_SERVER = $HTTP_SERVER_VARS;
|
|
}
|
|
if ($phpver >= '4.0.4pl1' && strstr($_SERVER["HTTP_USER_AGENT"],'compatible')) {
|
|
if (extension_loaded('zlib')) {
|
|
ob_end_clean();
|
|
ob_start('ob_gzhandler');
|
|
}
|
|
} else if ($phpver > '4.0') {
|
|
if (strstr($HTTP_SERVER_VARS['HTTP_ACCEPT_ENCODING'], 'gzip')) {
|
|
if (extension_loaded('zlib')) {
|
|
$do_gzip_compress = TRUE;
|
|
ob_start(array('ob_gzhandler',5));
|
|
ob_implicit_flush(0);
|
|
header('Content-Encoding: gzip');
|
|
}
|
|
}
|
|
}
|
|
$phpver = explode(".", $phpver);
|
|
$phpver = "$phpver[0]$phpver[1]";
|
|
if ($phpver >= 41) {
|
|
$PHP_SELF = $_SERVER['PHP_SELF'];
|
|
}
|
|
|
|
if (!ini_get("register_globals")) {
|
|
#import_request_variables('GPC');
|
|
}
|
|
|
|
function curPageURL() {
|
|
$isHTTPS = (isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == "on");
|
|
$port = (isset($_SERVER["SERVER_PORT"]) && ((!$isHTTPS && $_SERVER["SERVER_PORT"] != "80") || ($isHTTPS && $_SERVER["SERVER_PORT"] != "443")));
|
|
$port = ($port) ? ':'.$_SERVER["SERVER_PORT"] : '';
|
|
$url = ($isHTTPS ? 'https://' : 'http://').$_SERVER["SERVER_NAME"].$port.$_SERVER["REQUEST_URI"];
|
|
return $url;
|
|
}
|
|
|
|
$statecount = mysql_num_rows(mysql_query("SELECT * FROM gforum_Coaches WHERE coach_valid = 1"));
|
|
|
|
//Array of states for use in the form
|
|
$state_list = array('AL'=>"Alabama",
|
|
'AK'=>"Alaska",
|
|
'AB'=>'Alberta',
|
|
'AZ'=>"Arizona",
|
|
'AR'=>"Arkansas",
|
|
'BC'=>'British Columbia',
|
|
'CB'=>"Caribbean",
|
|
'CA'=>"California",
|
|
'CM'=>"Central America",
|
|
'CO'=>"Colorado",
|
|
'CT'=>"Connecticut",
|
|
'DE'=>"Delaware",
|
|
'DC'=>"District of Columbia",
|
|
'FL'=>"Florida",
|
|
'GA'=>"Georgia",
|
|
'HI'=>"Hawaii",
|
|
'ID'=>"Idaho",
|
|
'IL'=>"Illinois",
|
|
'IN'=>"Indiana",
|
|
'IA'=>"Iowa",
|
|
'KS'=>"Kansas",
|
|
'KY'=>"Kentucky",
|
|
'LA'=>"Louisiana",
|
|
'ME'=>"Maine",
|
|
'MB'=>'Manitoba',
|
|
'MD'=>"Maryland",
|
|
'MA'=>"Massachusetts",
|
|
'MX'=>"Mexico",
|
|
'MI'=>"Michigan",
|
|
'MN'=>"Minnesota",
|
|
'MS'=>"Mississippi",
|
|
'MO'=>"Missouri",
|
|
'MT'=>"Montana",
|
|
'NE'=>"Nebraska",
|
|
'NV'=>"Nevada",
|
|
'NB'=>'New Brunswick',
|
|
'NL'=>'Newfoundland',
|
|
'NH'=>"New Hampshire",
|
|
'NJ'=>"New Jersey",
|
|
'NM'=>"New Mexico",
|
|
'NY'=>"New York",
|
|
'NC'=>"North Carolina",
|
|
'ND'=>"North Dakota",
|
|
'NS'=>'Nova Scotia',
|
|
'OH'=>"Ohio",
|
|
'OK'=>"Oklahoma",
|
|
'ON'=>'Ontario',
|
|
'OR'=>"Oregon",
|
|
'PA'=>"Pennsylvania",
|
|
'PE'=>'Prince Edward Island',
|
|
'QC'=>'Quebec',
|
|
'RI'=>"Rhode Island",
|
|
'SK'=>'Saskatchewan',
|
|
'SC'=>"South Carolina",
|
|
'SD'=>"South Dakota",
|
|
'TN'=>"Tennessee",
|
|
'TX'=>"Texas",
|
|
'UT'=>"Utah",
|
|
'VT'=>"Vermont",
|
|
'VA'=>"Virginia",
|
|
'WA'=>"Washington",
|
|
'WV'=>"West Virginia",
|
|
'WI'=>"Wisconsin",
|
|
'WY'=>"Wyoming",
|
|
// New Foreign "States",
|
|
'OA'=>"Outside N. America");
|
|
|
|
?>
|