A new, object-oriented, better vesion of μForum
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
263 B

<?php
/**
* @package uForum2
* @file inc/database_connection.php
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/
$DB = new MySQLi(DB_HOST, DB_USER, DB_PASSWD, DB_NAME);
$DB->query("SET NAMES `utf8`");
?>