<?php
function getDatabases($db){
		$databases = array('db' => array('connectionString' => 'pgsql:host=localhost;dbname=db_fondoefa_saica',
																			'username' => 'dbadmin',
																			'password' => 'Z4dm1n.s41c4',
																			'charset' => 'utf8',
																		),
											 'db2' => array(
																			'connectionString' => 'pgsql:host=localhost;dbname=saime',
																			'username' => 'postgres',
																			'password' => 'postgres',
																			'charset' => 'utf8',
																		));
	return (array_key_exists($db,$databases)?$databases[$db]:array());
}
