1 <?php
2 /**
3 * The base configurations of the WordPress.
4 *
5 * This file has the following configurations: MySQL settings, Table Prefix,
6 * Secret Keys, WordPress Language, and ABSPATH. You can find more information
7 * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
8 * wp-config.php} Codex page. You can get the MySQL settings from your web host.
9 *
10 * This file is used by the wp-config.php creation script during the
11 * installation. You don't have to use the web site, you can just copy this file
12 * to "wp-config.php" and fill in the values.
13 *
14 * @package WordPress
15 */
16
17 // ** MySQL settings - You can get this info from your web host ** //
18 /** The name of the database for WordPress */
19 define('DB_NAME', 'database_name_here');
20
21 /** MySQL database username */
22 define('DB_USER', 'username_here');
23
24 /** MySQL database password */
25 define('DB_PASSWORD', 'password_here');
26
27 /** MySQL hostname */
28 define('DB_HOST', 'localhost');
29
30 /** Database Charset to use in creating database tables. */
31 define('DB_CHARSET', 'utf8');
32
33 /** The Database Collate type. Don't change this if in doubt. */
34 define('DB_COLLATE', '');