aqui va
Código PHP:
<?php
$con = mysql_connect("localhost","user","pass");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("dase de datos", $con);
$sql="INSERT INTO persona_fisica (apellido,nombre,direccion,numero_doc,telefono,celular,situacion,ciudad,cod_postal,mail)
VALUES
('$_POST[apellido]','$_POST[nombre]','$_POST[direccion]','$_POST[numero_doc]','$_POST[telefono]','$_POST[celular]','$_POST[situacion]','$_POST[ciudad]','$_POST[cod_postal]','$_POST[mail]')";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
//echo "1 record added";
$creditos_tbl = mysql_insert_id($con);
if ($creditos_tbl){
$sql = "INSERT INTO creditos_tbl (fecha_solicitud,numero_doc,id_comercio,estado,importe_credito,cuotas_credito,observaciones) VALUES
('$_POST[fecha_solicitud]','$_POST[numero_doc]','$_POST[id_comercio]','$_POST[estado]','$_POST[importe_credito]','$_POST[cuotas_credito]','$_POST[observaciones]')";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
}
mysql_close($con);
header ("Location: index.php");
?>