<?php

// don't touch
$start = microtime();
session_start();
$queries = 0;

// your MySQL connection settings
mysql_connect('62.149.150.104', 'xxxxxxx', 'xxxxxxx');
// your MySQL database name
mysql_select_db('Sql291315_1');

// your login username
$username = '';
// your login password
$password = '';

// some default posting settings
// minimum length for their name
$minNameLength = 4;
//maximum length for their name (limited to 40 by the database)
$maxNameLength = 20;
// minimum length for the message
$minMessageLength = 10;
// maximum length for the message (limited to 255 by the database)
$maxMessageLength = 200;

?>