6 |
kaklik |
1 |
<?php
|
|
|
2 |
// Line 3: Location of where you shoutbox will be located, dont include / at the end
|
|
|
3 |
$location = ".";
|
|
|
4 |
// Line 5: Background color for the shoutbox pages
|
|
|
5 |
$bgcolor = "#E7E7E7";
|
|
|
6 |
// Line 7: Text color for the shoutbox pages
|
|
|
7 |
$text = "#333333";
|
|
|
8 |
// Line 9: Visited link color
|
|
|
9 |
$vlink = "#000000";
|
|
|
10 |
// Line 11: Active link color
|
|
|
11 |
$alink = "#FF9900";
|
|
|
12 |
// Line 13: Default link color
|
|
|
13 |
$link = "#000000";
|
|
|
14 |
// Line 15: Default background color of table rows
|
|
|
15 |
$table1 = "#F5F5F5";
|
|
|
16 |
// Line 17: Secondary background color of table tows
|
|
|
17 |
$table2 = "#F7F7F7";
|
|
|
18 |
// Line 19: Color of the table border
|
|
|
19 |
$table_bdr = "#CCCCCC";
|
|
|
20 |
// Line 21: Add to the hour of the time
|
|
|
21 |
$time_a = 0;
|
|
|
22 |
// Line 23: Max characters allowed to be posted in the message field
|
|
|
23 |
$max_char = 90;
|
|
|
24 |
// Line 25: Allow the shoutbox pages to scroll down or be fixed in position
|
|
|
25 |
$scroll = "no";
|
|
|
26 |
// Line 27: Title of the shoutbox pages which appears in the title bar
|
|
|
27 |
$title = "Title Name Here";
|
|
|
28 |
// Line 29: Change the refresh time of the page, recommended default is 0
|
|
|
29 |
$refresh = 0;
|
|
|
30 |
?>
|