<?php
/* MySql Variables */
$dbhost = 'localhost';
$database = 'dbname';
$dbusername = 'username';
$dbpasswd = 'password';
/********************************************************/
/********************************************************/
/********************************************************/
/* Do not edit below */
/********************************************************/
/********************************************************/
/********************************************************/
$connection = mysql_connect($dbhost,$dbusername,$dbpasswd)
or die ('Could not connect to the database server.');
$db = mysql_select_db($database)
or die ('Could not connect to the database.');
?>