// User name and password for the authentication to the administration panel
$username="user";
$pwd="user";
// Url of the page where you put the shoutbox
$url="http://localhost/7zm";
// Max characters for the name
$max_name_lenght="10";
// Max characters for the message
$max_words_lenght="200";
// Color of the form
$color_background="#B8D1E9";
// Color of title of form
$color_title="#0B2A56";
// Color of button to submit messages
$button_background="#0B2A56";
// List of forbidden words
// You can add other words. Put them between "" and separated by ,
// The messages containing these words will be blocked
$proibito=array("word1","word2","word3");
// Max number of messages displayed. Min value = 1
$max_messaggi=2;
?>