Skip to content

Instantly share code, notes, and snippets.

@otarza
Created June 3, 2015 14:34
Show Gist options
  • Save otarza/501667fc54b19d26308a to your computer and use it in GitHub Desktop.
Save otarza/501667fc54b19d26308a to your computer and use it in GitHub Desktop.
Drupal Databases Example
<?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