Subversion Repositories svnkaklik

Compare Revisions

Ignore whitespace Rev 5 → Rev 6

/web/test/chat/shoutbox2/config.php
0,0 → 1,26
<?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;
 
?>