Funnpoint.com database authentication
<?php
$username = "as_funnpoint";
$password = "fpD506.angel";
$hostname = "localhost";
//connection to the database
$dbhandle = mysql_connect($hostname, $username, $password)
or die('<h1 align="center">Unable to connect to MySQL</h1>');
//select a database to work with
$selected = mysql_select_db("db_funnpoint",$dbhandle)
or die('<h1 align="center">Unable to connect to database.');
?>