Go to most recent revision | Blame | Last modification | View Log | Download
<?php
//Edit everything below to match your mySQL database configuration.
//database host
$db_host = "localhost";
//database name
$db_name = "shoutbox2";
//database user
$db_user = "chaosdell";
//database user password
$db_pass = "sesvul";
//Shoutbox Configuration
//Message length limit (in characters)
$max_length = 1000;
//Shoutbox message limit (Dont set this too high!)
$dmessage = 100;
?>