Skip to content

Instantly share code, notes, and snippets.

@jankeesvw
Created February 22, 2011 07:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jankeesvw/838335 to your computer and use it in GitHub Desktop.
Save jankeesvw/838335 to your computer and use it in GitHub Desktop.
<?php
class DATABASE_CONFIG {
var $default = array(
'driver' => 'mysql',
'persistent' => false,
'host' => 'localhost',
'login' => 'user_name',
'password' => 'your_password',
'database' => 'database_name',
'prefix' => '',
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment