Si lo que queres hacer es un formulario de alta, te dejo una copia de un ejemplo que tengo.
Podes aplicarlo al tuyo y ver como funciona.
alta_clientes1.php
Código PHP:
<html>
<body>
<form action="alta_clientes2.php" method="post">
Codigo: >>> <b><?php echo $ultimo;?></b><br>
Nombre o Razon Social:
<input name="nombre" type="text" size=30 tabindex=1 id="veni" onkeypress="return tabular(event,this)">
<br>
Ingrese CUIT:
<input type="text" size=15 tabindex=2 name="cuit" onkeypress="return tabular(event,this)"><br>
Domicilio:
<input type="text" size=35 tabindex=3 name="domicilio" onkeypress="return tabular(event,this)"><br>
Provincia:
<input type="text" size=30 tabindex=4 name="provincia" onkeypress="return tabular(event,this)"><br>
<br>
<input type="submit" value="REGISTRAR">
</form>
<input type="submit" value="VOLVER" onclick = "self.location.href = 'inicio.php'" />
</body>
</html>
y en alta_clientes.php, guardas los datos que viene de la pagina alta_clientes1.php
Código PHP:
<html>
<head>
<title>ALTA</title>
</head>
<?php
$conexion=mysql_connect("localhost","root","clave") or
die("Problemas en la conexion");
mysql_select_db("tu_base_de_datos",$conexion) or
die("Problemas en la seleccion de la base de datos");
mysql_query("insert into clientes(nombre,cuit,domicilio,provincia) values ('$_REQUEST[nombre]', '$_REQUEST[cuit]' ,'$_REQUEST[domicilio]','$_REQUEST[provincia]')", $conexion) or
die("Problemas en el select".mysql_error());
mysql_close($conexion);
echo "<b>El cliente fue dado de alta</b>";
?>
</body>
<input type="submit" value="VOLVER" onclick = "self.location.href = 'alta_clientes1.php'" />
</html>
Espero te sirva el ejemplo!!!
Salu2