<?php
$version = "1.22";
global $version;
if (file_exists('config.inc.php')) {
include_once("config.inc.php");
} else {
echo 'Exiting - the file "config.inc.php" does not exist.';
exit;
}
include_once("db_fns.php");
include_once("data_valid_fns.php");
include_once("output_fns.php");
include_once("organization_fns.php");
include_once("user_auth_fns.php");
include_once("admin_fns.php");
$pwd = dirname($SCRIPT_FILENAME);
define('FPDF_FONTPATH',"$pwd/fpdf/font/");
?>