<?php
 
header('Content-type: text/html; charset=utf-8');
 
include('includes/configure.php');
 
include('includes/geozonedb.php');
 
include('includes/classes/adodb/adodb.inc.php');
 
$HTTP_GET_VARS = clean_get__recursive($HTTP_GET_VARS);
 
$_GET = clean_get__recursive($_GET);
 
$_REQUEST = $_GET + $_POST; 
 
clean_global($_GET); 
 
//error_reporting(E_ALL & ~E_NOTICE);
 
ini_set("display_errors", true);
 
$ADODB_FETCH_MODE  = ADODB_FETCH_NUM;
 
$ADODB_COUNTRECS = false;
 
$db=collega_db();
 
?>
 
 |