este es mi formulario, tengo 2 etiquetas form, una envia los datos a Control.php y la otra a Control2.php, lo que pasa es que tengo una tabla Factura y otra detalle factura y necesito enviar en la misma pagina a los diferentes controles que obtienen los datos de los form y los envia a mysql
<html>
<head>
<title>Facturacion</title>
</head>
<body>
<form action="Control.php" name="Registro_Factura" id="Registro_Factura" method="post">
<table width="428" border="0" align="center">
<tr>
<td width="110">Factura</td>
<td width="308">
<input type="text" name="IdFactura" id="IdFactura" size="6" onChange="asignar()"></td>
</tr>
<tr>
<td>Fecha</td>
<td>
<input type="date" name="Fecha" id="Fecha" size="13" value="" readonly></td>
</tr>
<tr>
<td>Cliente</td>
<td>
<input type="date" name="Cliente" id="Cliente"></td>
</tr>
<tr>
<td>Cedula</td>
<td><input type="text" name="Cliente_Cedula" id="Cliente_Cedula" size="6" readonly></td>
</tr>
</tr>
<tr>
<td>Tipo de Venta </td>
<td>
<select name="TipoVenta" id="TipoVenta" style="width:120px">
<option>Credito</option>
<option>Contado</option>
</select> </td>
</tr>
<tr>
<td>Tipo</td>
<td>
<select name="Tipo" id="Tipo" style="width:120px">
<option>Normal</option>
<option>Mercado libre</option>
</select> </td>
</tr>
<tr>
<td>Observacion</td>
<td>
<textarea name="Observacion" id="Observacion" style="width:120px"></textarea> </td>
</tr>
<tr>
<td>Total</td>
<td><input type="text" name="Total" id="Total" size="6"></td>
</tr>
<tr>
<td>Saldo</td>
<td><input type="text" name="Saldo" id="Saldo" size="6"></td>
</tr>
<tr>
<td>NC</td>
<td><input type="text" name="Nc" id="Nc" size="6"></td>
</tr>
<tr>
<td>Utilidad</td>
<td><input type="text" name="Utilidad" id="Utilidad" size="6"></td>
</tr>
<tr>
<td>Anexo</td>
<td><input type="file" name="Anexo" id="Anexo" ></td>
</tr>
<tr>
<td>Pago Total </td>
<td><input type="text" name="Pago_Total" id="Pago_Total" size="6"></td>
</tr>
<tr>
<td>
</td>
</tr>
</table>
<form action="Control2.php" name="Registro_Producto" id="Registro_Producto" method="post">
<table width="200" border="0" align="center">
<tr>
<td>Factura</td>
<td>Fecha</td>
<td>Productos</td>
<td>Valor</td>
<td>Cantidad</td>
<td>Imeis</td>
<td>Subtotal</td>
<td>Utilidad</td>
<td>Bodega</td>
</tr>
<tr>
<td><input type="text" name="Fecha" id="Fecha" size="15"/></td>
<td>
<select name="Productos" id="Productos" style="width:120px">
<option>Alcatel</option>
<option>Huawei</option>
<option>Samsung</option>
</select>
</td>
<td><input type="text" name="idFactura_Factura" id="Valor" size="15"/></td>
<td><input type="text" name="Valor" id="Valor" size="15"/></td>
<td><input type="text" name="Cantidad" id="Cantidad" size="15"/></td>
<td><input type="text" name="Imeis" id="Imeis" size="15"/></td>
<td><input type="text" name="Subtotal" id="Subtotal" size="15"/></td>
<td><input type="text" name="Utilidad" id="Utilidad" size="15"/></td>
<td>
<select name="select" style="width:120px">
<option>Local 1</option>
<option>Local 2</option>
<option>Local 3</option>
</select>
</td>
</tr>
<tr>
<td colspan="11" align="center" id="botones"><input type="submit" name="Enviar" value="Enviar"> <input type="reset" name="Borrar" value="Borrar"></td>
</tr>
</table>
</form>
</form>
</body>
</html>