Skip to content

Instantly share code, notes, and snippets.

@okaprinarjaya
Created July 10, 2012 13:44
Show Gist options
  • Save okaprinarjaya/3083326 to your computer and use it in GitHub Desktop.
Save okaprinarjaya/3083326 to your computer and use it in GitHub Desktop.
<?php
class DBConfig {
public static function connInfo() {
$database = array(
'dbdriver' => 'mysql',
'dbhost' => 'localhost',
'dbusername' => 'root',
'dbpassword' => '',
'dbname' => 'webdev'
);
return $database;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment