This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/********************************/ | |
/* Если Основной текст 18 px */ | |
/* if body text 18px */ | |
font-size: 2.333333333333333em; /*42px*/ | |
font-size: 2.222222222222222em; /*40px*/ | |
font-size: 2.111111111111111em; /*38px*/ | |
font-size: 2em; /*36px*/ | |
font-size: 1.888888888888889em; /*34px*/ | |
font-size: 1.777777777777778em; /*32px*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define('DB_NAME', 'твой текст'); /** Имя базы данных MySQL */ | |
define('DB_USER', 'твой текст'); /** Имя пользователя MySQL */ | |
define('DB_PASSWORD', 'твой текст'); /** Пароль к базе данных MySQL */ | |
define('DB_HOST', 'localhost'); /** Имя сервера MySQL */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public $host = 'localhost'; /** Имя сервера MySQL */ | |
public $user = 'твой текст'; /** Имя пользователя MySQL */ | |
public $password = 'твой текст'; /** Пароль к базе данных MySQL */ | |
public $db = 'твой текст'; /** Имя базы данных MySQL */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$db_url = 'mysqli://username:password@localhost/databasename'; | |
// расшифровать её тебе поможет шаблон: | |
// mysqli://ИМЯ_ПОЛЬЗОВАТЕЛЯ:ПАРОЛЬ@ХОСТ/ИМЯ_БД |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$database_server = 'localhost'; /** Имя сервера MySQL */ | |
$database_user = 'твой текст'; /** Имя пользователя MySQL */ | |
$database_password = 'твой текст'; /** Пароль к базе данных MySQL */ | |
$dbase = 'твой текст'; /** Имя базы данных MySQL */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$DBHost = "localhost"; /** Имя сервера MySQL */ | |
$DBLogin = "твой текст"; /** Имя пользователя MySQL */ | |
$DBPassword = "твой текст"; /** Пароль к базе данных MySQL */ | |
$DBName = "твой текст"; /** Имя базы данных MySQL */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$config['db_hostname'] = 'localhost'; /** Имя сервера MySQL */ | |
$config['db_username'] = 'твой текст'; /** Имя пользователя MySQL */ | |
$config['db_password'] = 'твой текст'; /** Пароль к базе данных MySQL */ | |
$config['db_name'] = 'твой текст'; /** Имя базы данных MySQL */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
host = "localhost"; /** Имя сервера MySQL */ | |
user_db = "твой текст"; /** Имя пользователя MySQL */ | |
pass_db = "твой текст"; /** Пароль к базе данных MySQL */ | |
dbase = "твой текст"; /** Имя базы данных MySQL */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define ("DBHOST", "localhost"); /** Имя сервера MySQL */ | |
define ("DBNAME", "твой текст"); /** Имя базы данных MySQL */ | |
define ("DBUSER", "твой текст"); /** Имя пользователя MySQL */ | |
define ("DBPASS", "твой текст"); /** Пароль к базе данных MySQL */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$A_DBCONFIG=array('host'=>'имя сервера ','name'=>' имя базы','user'=>'имя пользователя','password'=>'пароль'); |
OlderNewer