Hey, i am using the correct Username, Password, Hostname and Database but for some reason my website will not connect.

The error:
Error: Access denied for user '51043_*******'@'192.168.1.1' to database '********_zxq_*'

(I have filtered out the actual names but they are still just as long)

Also, here's my config.php
CODE
<?PHP
$hostname = "localhost";
$username = "51043_*******";
$password = "*****";
$database = "*********_zxq_*";

$con = mysql_connect($hostname, $username, $password);
    if(!$con) {
        echo "Error: " . mysql_error();
        die;
    }
$con = mysql_select_db($database);
    if(!$con) {
        echo "Error: " . mysql_error();
        die;
    }
?>


(Again, filtered out.)

Any suggestions?

EDIT: Don't worry. I got it working.