Buenas tardes!
Soy nuevo en esto y estoy tratando de conectar un formulario muy sencillo a una base de datos que esta como localhost. Ya he tratado millones de cosas y no doy con el error. Adjunto el código si alguién me puede dar una pista.
Gracias!
<!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>Untitled Document</title>
<style type="text/css">
#form5 table tr td #enviar {
text-align: left;
}
</style>
</head>
<body>
<form id="form5" name="form5" method="post" action="form5.php">
<table width="559" height="889" border="0" align="center">
<tr>
<th colspan="2" bgcolor="#0066FF" scope="col"><p> </p>
<p>CENTRO TÉCNICO ESPECIALIZADO</p>
<p>SISTEMA DE REGISTRO DE CLIENTES Y PRODUCTOS</p>
<p> </p></th>
</tr>
<tr>
<th width="264" height="38" bgcolor="#FFFF99" scope="col"><div align="right">
<label for="cliente2">Cliente</label>
</div></th>
<th width="285" bgcolor="#FFFF99" scope="col"><div align="left">
<input name="cliente" type="text" id="cliente" size="60" maxlength="60" />
</div></th>
</tr>
<tr>
<td height="44" bgcolor="#FFFF99"><div align="right">
<label for="cedula">Cedula</label>
</div></td>
<td bgcolor="#FFFF99"><input name="cedula" type="text" id="cedula" size="30" maxlength="15" /></td>
</tr>
<tr>
<td height="46" bgcolor="#FFFF99"><div align="right">
<label for="email">E-mail</label>
</div></td>
<td bgcolor="#FFFF99"><div align="left">
<input name="email" type="text" id="email" size="30" />
</div></td>
</tr>
<tr>
<td height="44" bgcolor="#FFFF99"><div align="right">
<label for="telefono">Telefono</label>
</div></td>
<td bgcolor="#FFFF99"><div align="left">
<input name="telefono" type="text" id="telefono" size="40" />
</div></td>
</tr>
<tr>
<td height="44" bgcolor="#FFFF99"><div align="right">
<label for="direccion">Barrio </label>
</div></td>
<td bgcolor="#FFFF99"><div align="left">
<input name="barrio" type="text" id="barrio" size="40" />
</div></td>
</tr>
<tr>
<td colspan="2" bgcolor="#FFFF99"><div align="right">
<input name="enviar" type="submit" id="enviar" value="enviar" />
</div> <div align="left"></div></td>
</tr>
</table>
<p> </p>
<p> \</p>
<p> </p>
<p> </p>
<p> </p>
</form>
<?php
if(isset($_post['enviar'])){
$con = mysql_connect("localhost", "andres","password" );
if (!$con) {
die ("Cannont connect:" . mysql_error ());
}
mysql_select_db("cte",$con);
$sql = "INSERT INTO clientes(cliente, cedula,email,barrio,telefono)VALUES('$_post[cliente]','$_post[cedula]','$_post[email]','$_post[barrio]','$_post[telefono]')";
mysql_query($sql,$con);
mysql_close ($con);
}
?>
</body>
</html>