<?php
//ENTER THE SETTINGS FOR THE CONNECTION TO YOUR DATABASE BELOW
$Host = "localhost"; // The hostname for your server. localhost is default or contact your hosts if you don't know
$Dbase = "the_name_of_your_database"; // The name of your database on your database server
$User = "your_database_username"; // The username required to connect to your database
$Pass = "your_database_password"; // The password required to connect to your database
// DO NOT EDIT PAST THIS LINE
$db = mysql_connect($Host, $User, $Pass) or die("<b><br><br>Clever Copy fatal error! <br>Unable to connect to the database<br>One or more of the hostname, username, password or database name are probably incorrect in the admin/connect.inc file<b>");
if(!$db)die("<b><br><br>Clever Copy fatal error! <br>No connection to database could be established to database - There is a big problem. Site owner - contact your hosts!</b>");
if(!mysql_select_db($Dbase,$db))die("<b><br><br>Clever Copy fatal error! <br>Cannot find your database on the database server - There is a big problem. Site owner - contact your hosts!</b>");
?>