Skip to content

Commit

Permalink
Moved the database connection details to a config.php file
Browse files Browse the repository at this point in the history
  • Loading branch information
andrespagella committed May 26, 2011
1 parent b799853 commit ecb4e9a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions server/config.php
@@ -0,0 +1,11 @@
<?php
// Database connection details
define('DB_HOST', 'localhost');
define('DB_USER', 'mygameuser');
define('DB_PASSWORD', 'game123');
define('DB_NAME', 'mygame');

// Grid size
define('GRID_X', 50);
define('GRID_Y', 50);
?>

0 comments on commit ecb4e9a

Please sign in to comment.