First commit 08/03/2002
This commit is contained in:
25
common/config.inc.php
Normal file
25
common/config.inc.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
|
||||
# Appearance
|
||||
$bg_color = "#57A44D";
|
||||
$tbl_width = 600;
|
||||
$tbl_border = 1;
|
||||
$tbl_borderc = "#000000";
|
||||
|
||||
$tbl_bg = "#427B42";
|
||||
$tbl_rowscolor = "#488048";
|
||||
|
||||
#DataBase Control
|
||||
$limit = 20;
|
||||
|
||||
function MakeBox( $string )
|
||||
{
|
||||
global $tbl_border, $tbl_borderc, $tbl_width, $bg_color, $tbl_bg;
|
||||
|
||||
if ( !isset( $box_template ) )
|
||||
return "<div align=\"center\"><center><table border=\"$tbl_border\" cellpadding=\"0\" cellspacing=\"0\" width=\"$tbl_width\" bgcolor=\"$tbl_bg\" bordercolor=\"$tbl_borderc\" bordercolordark=\"$tbl_borderc\" bordercolorlight=\"$tbl_borderc\"><tr><td>$string</td></tr></table></center></div>";
|
||||
};
|
||||
|
||||
|
||||
?>
|
Reference in New Issue
Block a user