Problemas inserir bd mysql com php

Estou criando um crud em php com mysql
Só que ja criei o script de conexao,o form de preechimento e o arquivo de gravar

arquivo de conexao

<?
$host = "localhost";
$usuario = "root";
$senha = "";
$banco = mysql_connect($host,$usuario,$senha)or die("Não Foi Possivel Realizar a Conexão");
mysql_select_db("clientes",$banco)or die("Banco de Dados Não Localizado");
?>

arquivo de formulario

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Cadastro Clientes</title>
<style type="text/css">
<!--
.style1 {
	font-size: 36px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}
.style2 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
}
-->
</style>
</head>

<body>
<table width="835" border="0">
  <tr>
    <td><td width="829">
    <form method="post" action="gravar.php">
    <table width="830" border="0">
  <tr>
    <td colspan="2"><div align="center" class="style1">Cadastro Clientes</div></td>
    </tr>
  <tr>
    <td width="145"><div align="center" class="style2">Codigo</div></td>
    <td width="574"><label>
      <input type="text" name="tfcodigo"/>
    </label></td>
  </tr>
  <tr>
    <td width="145"><div align="center" class="style2">Nome</div></td>
    <td width="574"><label>
      <input type="text" name="tfnome" />
    </label></td>
  </tr>
  <tr>
    <td><div align="center" class="style2">Endereco</div></td>
    <td><label>
      <input type="text" name="tfendereco" />
    </label></td>
  </tr>
  <tr>
    <td><div align="center" class="style2">Cidade</div></td>
    <td><label>
      <input type="text" name="tfcidade" />
    </label></td>
  </tr>
  <tr>
    <td><div align="center" class="style2">Bairro</div></td>
    <td><label>
      <input type="text" name="tfbairro" />
    </label></td>
  </tr>
  <tr>
    <td><div align="center" class="style2">CEP</div></td>
    <td><label>
      <input type="text" name="tfcep"/>
    </label></td>
  </tr>
  <tr>
    <td><div align="center" class="style2">Email</div></td>
    <td><label>
      <input type="text" name="tfemail" />
    </label></td>
  </tr>
  <tr>
    <td colspan="2"><div align="center">
      <label>
      <input type="submit" name="bt_cadastro" value="Cadastro" />
      </label>
      <label>
      <input type="reset" name="bt_limpar" value="Limpar" />
      </label>
    </div></td>
    </tr>
</table>

    </form>
  </tr>
</table>
</body>

</html>

arquivo de gravar

Obj o banco de dados se chama clientes e tem os mesmos campos acima no codigo

O Problema é o seguinte quando preencho o formulario realizei testes de impressao para ver se as variaveis estavam sendo passadas ate ai ok.
Mas o problema e quando gravar ele me mostra a seguinte mensagem

Warning: mysql_query() [function.mysql-query]: Access denied for user ‘ODBC’@‘localhost’ (using password: NO) in C:\xampp\htdocs\aula_php\gravar.php on line 28

Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in C:\xampp\htdocs\aula_php\gravar.php on line 28

Algume poderi me ajudar porfavor

Desculpe mas eu descobri um erro tosco ,um erro de principiante ja resolvi o problema