Skip to content

Instantly share code, notes, and snippets.

@rob-bar
Created January 17, 2013 10:50
Show Gist options
  • Save rob-bar/4555179 to your computer and use it in GitHub Desktop.
Save rob-bar/4555179 to your computer and use it in GitHub Desktop.
#snippet #fuelphp #php #config database settings
<?php
/**
* The development database settings.
*/
return array(
'default' => array(
'type' => 'mysqli',
'connection' => array(
'hostname' => '127.0.0.1',
'port' => '3306',
'database' => 'DB_name',
'username' => 'robbieb',
'password' => 'DeV_4321',
'persistent' => false,
'compress' => true
),
'identifier' => '`',
'table_prefix' => '',
'charset' => 'utf8',
'enable_cache' => true,
'profiling' => true,
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment