View file mch-lib/sys/etc/mysql_connection.php

File size: 558B
<?php
  $user = 'root'; //Name of db user
  $pass = '';  //Password of db
  $db = 'mch_lib'; //Name of db
  $sdb = 'localhost'; //Mysql server
  //connection to the mysql server
  @mysql_connect($sdb, $user, $pass)
    or die('Не удалось подключиться к базе данных!'." /r/n ".mysql_error());
  //select the database to use this
  @mysql_select_db($db)
    or die('Не удалось выбрать базу!'." /r/n ".mysql_error());
  //set charset UTF-8 for using database
  mysql_query("SET NAMES utf8");
?>