additional_plugins/setup/s9y_conf/s9y_conf_2.0.0/inc/db.inc.php
2011-12-13 12:29:05 +01:00

40 lines
1 KiB
PHP

<?php
/*
db.inc.php
Include DB routines dependant on type of DB
Copyright (C) 2006 Chris Lander
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Contact:
Chris Lander Email: clander@labbs.com
LABBS Web Services
54 Stanley Street
Luton
Bedfordshire
United Kingdom
LU1 5AN
*/
debug_msg ("FILE: ".__FILE__,3);
if (S9YCONF_DBTYPE == 'MYSQL') {
include_once S9YCONF_INC_PATH.'mysql.functions.inc.php';
}
?>