123456789101112131415161718192021222324252627282930 |
- <?
-
- ?>
- <?
-
- define('DB_Server', '[server]');
- define('DB_name', '[database]');
- define('DB_User', '[userdb]');
- define('DB_Password', '[dbpass]');
- define('Table_prefix', '[tableprefix]');
-
-
-
- define('Absolute_Path', dirname(__FILE__).'/');
-
- session_start();
- header("Expires: Mon, 26 Jul 1957 05:00:00 GMT");
- header("Last-Modified: " . gmdate("D, d M Y H:i:s ") . " GMT");
- header("Cache-Control: no-store, no-cache, must-revalidate");
- header("Cache-Control: post-check=0, pre-check=0", false);
- header("Pragma: no-cache");
- require_once(Absolute_Path."classes/mysql_connection.class.php");
- ?>
|