Created
June 3, 2015 14:34
-
-
Save otarza/501667fc54b19d26308a to your computer and use it in GitHub Desktop.
Drupal Databases Example
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
<?php | |
$databases = array ( | |
'default' => | |
array ( | |
'default' => | |
array ( | |
'database' => 'name', | |
'username' => 'root', | |
'password' => '12345678', | |
'host' => 'localhost', | |
'port' => '3306', | |
'driver' => 'mysql', | |
'prefix' => '', | |
), | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment