<?php
 
 
 
/**************************************************************************
 
 *
 
 * Title:         Config For Class 'connDB' (conf_db_pdo.inc.php)
 
 *
 
 * Version:       1.3
 
 *
 
 * Copyright:     (c) 2012 Volker Rubach - All rights reserved
 
 *
 
 * Description:   In this configuration file are the credentials for
 
 *                the database connection managed centrally.
 
 *
 
 *************************************************************************/
 
 
 
//-------------------------------------------------------------------------
 
// MySQL database details
 
//-------------------------------------------------------------------------
 
 
$this->dbHost = "127.0.0.1";    // MySQL host name
 
$this->dbName = "<name>";       // MySQL database name
 
 
 
//-------------------------------------------------------------------------
 
// MySQL account details
 
//-------------------------------------------------------------------------
 
 
$this->dbUser = "<user>";       // MySQL username
 
$this->dbPass = "<password>";   // MySQL password
 
 
 
?>
 
 |