MOON
Server: Apache
System: Linux kvm.asjudinet.com 5.14.0-611.54.6.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 04:23:18 EDT 2026 x86_64
User: asjudine (1001)
PHP: 8.0.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/asjudine/www/ELEMENTOS/db/db.php
<?php


if (stristr($_SERVER['PHP_SELF'], "db.php")) {

    Header("Location: index.php");

    die();

}



if (defined('FORUM_ADMIN')) {

    $the_include = "../../../db";

} elseif (defined('INSIDE_MOD')) {

    $the_include = "../../db";

} else {

    $the_include = "db";

}



switch($dbtype) {



	case 'MySQL':

		include("".$the_include."/mysql.php");

		break;



	case 'mysql4':

		include("".$the_include."/mysql4.php");

		break;



	case 'sqlite':

		include("".$the_include."/sqlite.php");

		break;



	case 'postgres':

		include("".$the_include."/postgres7.php");

		break;



	case 'mssql':

		include("".$the_include."/mssql.php");

		break;



	case 'oracle':

		include("".$the_include."/oracle.php");

		break;



	case 'msaccess':

		include("".$the_include."/msaccess.php");

		break;



	case 'mssql-odbc':

		include("".$the_include."/mssql-odbc.php");

		break;

	

	case 'db2':

		include("".$the_include."/db2.php");

		break;



}



$db = new sql_db($dbhost, $dbuname, $dbpass, $dbname, false);

if(!$db->db_connect_id) {

    die("<br><br><center><img src=images/logo.gif><br><br><b>There seems to be a problem with the $dbtype server, sorry for the inconvenience.<br><br>We should be back shortly.</center></b>");

}



?>