<?php
/* the database user name */
define('DB_USER', 'user');
/* the database password */
define('DB_PASSWORD', 'password');
/* the database host */
define('DB_HOST', 'localhost');
/* the database tcp/ip port */
define('DB_PORT', '3306');
/* the database name */
define('DB_NAME', 'vamola_validator');
/* The prefix to add to table names to avoid conflicts with existing */
/* tables. Default: AC_ */
define('TABLE_PREFIX', 'AC_');
/* DO NOT ALTER THIS LAST LINE */
define('AC_INSTALL', TRUE);
?>