Please help me to correct this, because its relpy:
Access denied for user 'flasycom@localho'@'localhost' (using password: YES)
and this is my database setup
<?php
//#################################################################
//Only edit the following 4 varibles
$SQLhost = /* SQL Host */ 'localhost';
$SQLuser = /* SQL Username */ 'flasycom_admin';
$SQLpass = /* SQL Password */ 'household';
$SQLdb = /* SQL Database */ 'flasycom_flashysky';
//#################################################################
// DO NOT EDIT - editing this can/will break the connection string.
$con = mysql_connect("$SQLhost","$SQLuser","$SQLpass") or die (mysql_error());
mysql_select_db("$SQLdb") or die (mysql_error());
//#################################################################
?>