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.

13 lines
263 B

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