View file rating/config.php

File size: 310B
<?php
$DB_HOST = "localhost";
$DB_USER = "юзер";
$DB_PASS = "пароль";
$DB_NAME = "имя базы";
/*
$DB_HOST = "localhost";
$DB_USER = "romeoms_rating";
$DB_PASS = "rating";
$DB_NAME = "romeoms_rating";*/
mysql_connect($DB_HOST,$DB_USER,$DB_PASS) or die (mysql_error());
mysql_select_db($DB_NAME);
?>