Skip to content

Instantly share code, notes, and snippets.

@slywalker
Created March 6, 2010 02:42
Show Gist options
  • Save slywalker/323453 to your computer and use it in GitHub Desktop.
Save slywalker/323453 to your computer and use it in GitHub Desktop.
<?php
class DATABASE_CONFIG {
var $default = array(
'driver' => 'mysql',
'persistent' => false,
'host' => 'localhost',
'login' => 'user',
'password' => 'pass',
'database' => 'workshop',
'encoding' => 'utf8'
);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment