Código PHP:
<form action='grabar.php' method='post'>
Nombre....:<br>
<input type="text" name="p_v1" value="" size=20><br>
Edad....:<br>
<input type="int" name="p_v2" value="" size=30><br>
<input type=submit value="Enviar">
<input type=reset value="Borrar">
</form>
Código PHP:
<?php
$base="NOMBRE-BASE";
$tabla="NOMBRE-TABLA";
$v1=$_POST['p_v1'];
$v2=$_POST['p_v2'];
$conexion=mysql_connect("SERVIDOR","USUARIO","CONTRASEÑA");
mysql_select_db($base,$conexion);
mysql_query("INSERT into ".$tabla." (NOMBRE,EDAD) VALUES ('".$v1."','".$v2."')", $conexion);
if (mysql_errno($conexion)==0){echo "<h2>Registro AÑADIDO: $v1 y $v2</b></H2>";
}else{
if (mysql_errno($conexion)==1062){echo "<h2>No ha podido añadirse el registro<br>Ya existe un campo con este DNI</h2>";
}else{
$numerror=mysql_errno($conexion);
$descrerror=mysql_error($conexion);
echo "Se ha producido un error nº ".$numerror." que corresponde a: ".$descrerror." <br>";
}
}
mysql_close();
?>