prova questa ed eventualmente posta l'errore

codice:
$host = "000.000.000.000"; 
$username = "USER";
$password = "PASSWORD"; 

$connection = mysql_connect($host,$username,$password);
if ($connection == false){ 
  echo mysql_errno().": ".mysql_error()."
"; 
  echo("Your username or password is not correct."); 
  exit; 
}  

mysql_select_db("NOME_DATABASE");