databaseConfiguration.example.php from Brim at Krugle
Show databaseConfiguration.example.php syntax highlighted
<?php
/**
* This file is part of the Brim project.
* The brim-project is located at the following
* location: {@link http://www.brim-project.org/ http://www.brim-project.org/}
*
* <pre> Enjoy :-) </pre>
*
* @author Barry Nauta
* @package org.brim-project.framework
* @subpackage configuration
*
* @copyright [brim-project.org] - Copyright (c) 2003 - 2007 Barry Nauta
*
* @license http://opensource.org/licenses/gpl-license.php
* The GNU Public License
*/
//
// mysql, postgres or any db supported by adodb
//
$engine = 'mysql';
//
// the database user
//
$user = 'root';
//
// the password for the database user
//
$password = '';
//
// the host (machine) for the database. this is 'localhost' in most of the cases
//
$host = 'localhost';
//
// The name of the database.
//
$database = 'brim';
?>
See more files for this project here