
13/02/2006, 11:59
|
| | Fecha de Ingreso: noviembre-2005
Mensajes: 6
Antigüedad: 19 años, 3 meses Puntos: 0 | |
Codigo Bien, envio el codigo resumido en lo sgte:
Registro.html
<html>
<form name='form1' action='registro2.php' method='POST'>
...
Ficha del Titular<input type='text' name='ficha' value='' size='5' maxlength=5>
Apellidos y Nombres<input type='text' name='nombre' value='' size='60' maxlength=60>
<input type='submit' name='cmbAceptar' value='Aceptar'">
<input type='reset' name='cmbCancelar' value='Cancelar'>
</html>
Registro2.php
<html>
<form name='form1' action='registro3.php' method='POST'>
<table>
<tr> <!--Cuerpo de Opción seleccionada-->
<td height=100% valign='top'>
<table style='border: solid' width='690' bordercolor='005E4C' align='center'>
<tr>
<td width='120'>Código Familiar</td>
<td width='280'><?php echo $cod_fam; ?></td>
</tr>
<tr>
<td width='120'>Apellidos y Nombres</td>
<td width='280'><?php echo $nombre; ?></td>
</tr>
</table>
<--Proceso de cálculo de cuotas de Aportación-->
<?php
echo "<input type='hidden' name='ficha' value=$ficha>";
echo "<input type='hidden' name='cod_fam' value=$cod_fam>";
echo "<input type='hidden' name='nombre' value=$nombre>";
?>
<center><br><br>¿Desea realmente guardar el registro?<br><br>
<input type='submit' name='si' value='Si'>
<input type='submit' name='no' value='No'></center>
<br>
</td>
</tr><!--Fin de Cuerpo-->
</table>
...
</html>
Registro3.php
<html>
<?php
echo $nombre;
?>
</html> |