index.html ( donde manda el Form a través de Post a lectura2.php)
<head>
<title>formulario</title>
</head>
<body>
<center>
<form name="f9" method="post" action="lectura2.php">
<input name="cod" type="text" id="cod" size="10">
<input name="cla" type="text" id="cla" size="10">
<input name="tex" type="text" id="tex" size="10">
<input type="button" value="xxx" onclick="submit()">
</form>
</body>
</html>
Lectura2.php
<?
$link=mysql_connect("mysql3.000webhost.com","a3861756_ariel","xxxxxxx");
mysql_select_db("a3861756_data",$link);
$cod11=$_POST['cod'];
$cla11=$_POST['cla'];
$cod11= htmlspecialchars ($_POST['cod']) ;
$te= htmlspecialchars ($_POST['tex']) ;
mysql_query("UPDATE Empresas
SET Dato5='$te' WHERE Codi='$cod11'");
echo mysql_errno($link) . ": " . mysql_error($link) . "\n";
?>
El servidor es 000webhost no se si tendra algo que ver ya que me dijeron que no es de los mejores, en fin si alguien me puede dar una mano recontra gradecido...