edit the php file like this:
Code:
<?php
// Database configuration
$bd_host = "localhost"; // leave this the same
$bd_usuario = "username"; // change this to the database name, example: username_user
$bd_password = "pass"; // password for username_user
$bd_base = "database"; // database you created, example: username_database
$url = "http://www.yoursitehere.com"; // this is the url of your site, example: http://site.x10hosting.com
$con = mysql_connect($bd_host, $bd_usuario, $bd_password);
mysql_select_db($bd_base, $con);
?>