home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / akce / web / phpnuke / PHP-Nuke-7.5.exe / html / db / db.php next >
PHP Script  |  2004-01-30  |  3KB  |  91 lines

  1. <?php
  2. /***************************************************************************
  3.  *                                 db.php
  4.  *                            -------------------
  5.  *   begin                : Saturday, Feb 13, 2001
  6.  *   copyright            : (C) 2001 The phpBB Group
  7.  *   email                : support@phpbb.com
  8.  *
  9.  *   $Id: db.php,v 1.10 2002/03/18 13:35:22 psotfx Exp $
  10.  *
  11.  *
  12.  ***************************************************************************/
  13.  
  14. /***************************************************************************
  15.  *   This file is part of the phpBB2 port to Nuke 6.0 (c) copyright 2002
  16.  *   by Tom Nitzschner (tom@toms-home.com)
  17.  *   http://bbtonuke.sourceforge.net (or http://www.toms-home.com)
  18.  *
  19.  *   As always, make a backup before messing with anything. All code
  20.  *   release by me is considered sample code only. It may be fully
  21.  *   functual, but you use it at your own risk, if you break it,
  22.  *   you get to fix it too. No waranty is given or implied.
  23.  *
  24.  *   Please post all questions/request about this port on http://bbtonuke.sourceforge.net first,
  25.  *   then on my site. All original header code and copyright messages will be maintained
  26.  *   to give credit where credit is due. If you modify this, the only requirement is
  27.  *   that you also maintain all original copyright messages. All my work is released
  28.  *   under the GNU GENERAL PUBLIC LICENSE. Please see the README for more information.
  29.  *
  30.  ***************************************************************************/
  31.  
  32. /***************************************************************************
  33.  *
  34.  *   This program is free software; you can redistribute it and/or modify
  35.  *   it under the terms of the GNU General Public License as published by
  36.  *   the Free Software Foundation; either version 2 of the License, or
  37.  *   (at your option) any later version.
  38.  *
  39.  ***************************************************************************/
  40.  
  41. global $forum_admin;
  42. if ($forum_admin == 1) {
  43.     $the_include = "../../../db";
  44. } elseif ($inside_mod == 1) {
  45.     $the_include = "../../db";
  46. } else {
  47.     $the_include = "db";
  48. }
  49.  
  50. switch($dbtype) {
  51.  
  52.     case 'MySQL':
  53.         include("".$the_include."/mysql.php");
  54.         break;
  55.  
  56.     case 'mysql4':
  57.         include("".$the_include."/mysql4.php");
  58.         break;
  59.  
  60.     case 'postgres':
  61.         include("".$the_include."/postgres7.php");
  62.         break;
  63.  
  64.     case 'mssql':
  65.         include("".$the_include."/mssql.php");
  66.         break;
  67.  
  68.     case 'oracle':
  69.         include("".$the_include."/oracle.php");
  70.         break;
  71.  
  72.     case 'msaccess':
  73.         include("".$the_include."/msaccess.php");
  74.         break;
  75.  
  76.     case 'mssql-odbc':
  77.         include("".$the_include."/mssql-odbc.php");
  78.         break;
  79.     
  80.     case 'db2':
  81.         include("".$the_include."/db2.php");
  82.         break;
  83.  
  84. }
  85.  
  86. $db = new sql_db($dbhost, $dbuname, $dbpass, $dbname, false);
  87. if(!$db->db_connect_id) {
  88.     die("<br><br><center><img src=images/logo.gif><br><br><b>There seems to be a problem with the MySQL server, sorry for the inconvenience.<br><br>We should be back shortly.</center></b>");
  89. }
  90.  
  91. ?>