- <?
- /**
- * Configuration resources for this site
- * The configuration resources for this package are defined in this file
- *
- * @package db
- * @filesource
- * @see HTML_DB_RESOURCE_PATH/Configuration.php
- * @copyright (c) http://Finn-Rasmussen.com
- * @license http://Finn-Rasmussen.com/license/ myPHP License conditions
- * @author http://Finn-Rasmussen.com
- * @version 1.9
- * @since 21-oct-2005
- */
-
- /**
- * Defines the Prefix to the Database Configuration file
- * Note: different files for win and unix
- * @global DATABASE_CONFIG_PREFIX The Database Config Prefix name
- */
- if (!empty($_SERVER['OS']) && $_SERVER['OS']=='Windows_NT') {
- define('DATABASE_CONFIG_PREFIX', '/win');
- } else {
- /**
- * @ignore
- */
- define('DATABASE_CONFIG_PREFIX', '/unix');
- }
- ?>