Created
April 27, 2025 10:13
-
-
Save regepan/28b77a546e5729c896f650e669291561 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?php | |
// ** Database settings - You can get this info from your web host ** // | |
/** The name of the database for WordPress */ | |
define( 'DB_NAME', 'local' ); | |
/** Database username */ | |
define( 'DB_USER', 'root' ); | |
/** Database password */ | |
define( 'DB_PASSWORD', 'root' ); | |
/** Database hostname */ | |
define( 'DB_HOST', 'localhost' ); | |
/** Database charset to use in creating database tables. */ | |
define( 'DB_CHARSET', 'utf8' ); | |
/** The database collate type. Don't change this if in doubt. */ | |
define( 'DB_COLLATE', '' ); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment