<?php
 
//IMPORTANT:
 
//Rename this file to configuration.php after having inserted all the correct db information
 
 
global $configuration;
 
 
// edit the information below to match your database settings
 
$configuration['db']      = 'test';         //    database name
 
$configuration['host']    = 'test';        //    database host
 
$configuration['user']    = 'test';        //    database user
 
$configuration['pass']    = 'test';        //    database password
 
$configuration['port']     = '3306';        //    database port
 
 
?>
 
 |