<?php
/*
** Shoutbox
** Settings
*/
// number of posts to keep in the database
define('POSTS_TO_KEEP', 10);
// question and answer to prevent bots
define('QUESTION', 'Do sheep fly?');
define('ANSWER', 'no'); // no spaces or punctuation, case insensitive
// database info
$db_name = 'shoutbox'; // name of database
$db_host = 'localhost'; // hostname of database
define('DB_USER', 'root'); // username
define('DB_PASS', 'root'); // password
// database connection string, you probably don't need to modify this
define('DB_SOURCE', "mysql:dbname=$db_name;host=$db_host");
?>