Silnik strony + galerii zdjęć Suczawa 2009
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.

12 lines
423 B

  1. <?
  2. require_once('config.php');
  3. require_once('functions.php');
  4. $DB = new mysqli(DB_HOST, DB_USER, DB_PASS, DB_NAME); #connect with the database
  5. if ($DB->connect_error) { #check if there were any errors connecting
  6. showError('Could not connect do database server ('.$DB->connect_errno.'): '.$DB->connect_error);
  7. }
  8. if (!$DB->query("SET NAMES 'utf8'")) { #use utf-8
  9. showError('Could not set character to UTF-8');
  10. }
  11. ?>