Subversion Repositories svnkaklik

Rev

Go to most recent revision | Details | Last modification | View Log

Rev Author Line No. Line
6 kaklik 1
<?php 
2
 
3
   //Edit everything below to match your mySQL database configuration.
4
 
5
   //database host
6
   $db_host = "localhost"; 
7
 
8
   //database name
9
   $db_name = "shoutbox2";
10
 
11
   //database user
12
   $db_user = "chaosdell"; 
13
 
14
   //database user password
15
   $db_pass = "sesvul";  
16
 
17
 
18
   //Shoutbox Configuration
19
 
20
   //Message length limit (in characters)
21
   $max_length = 1000;
22
 
23
   //Shoutbox message limit (Dont set this too high!)
24
   $dmessage = 100;
25
 
26
?>