<?php


// +----------------------------------------------------------------------+
// | BookMaster System                                        			  |
// +----------------------------------------------------------------------+
// | Copyright (c) 2009 Research Publishing Services. All Rights Reserved.|
// +----------------------------------------------------------------------+
// | It is subject to the license of Research Publishing Services as in   |
// | license.txt   														  |
// +----------------------------------------------------------------------+

$server 	= 'localhost';
$username 	= 'rpsonl5_rpsjournal';
$password 	= 'rps2journal';
$database	= 'rpsonl5_rpsjournal';


$link = mysql_connect($server, $username, $password);
if (!$link) {
    die('Not connected : ' . mysql_error());
}

// make foo the current db
$db_selected = mysql_select_db($database);
if (!$db_selected) {
    die ('Can\'t use foo : ' . mysql_error());
}
?>