<!-- comosea.php -->
<html>
<head>
<title>Formulario Reentrantes</title>
</head>
<body>
<?
if (!$_POST){
?>
<form name="formLoguin" action="comosea.php" method="post">
<table>
<tr>
<td align="left"><label for="nombre">Nombre:</label></td>
<td align="left"><input type="text" name="nombre" id="nombre" size="10" /></td>
</tr>
<tr>
<td align="left"><label for="apellido">Apellido:</label></td>
<td align="left"><input type="text" name="apellido" id="apellido" size="10" /></td>
</tr>
<tr>
<td colspan="2" align="left"><input type="submit" value="Aceptar" /></td>
</tr>
</table>
</form>
<?
}else{
echo "<b>".$_POST['apellido']." ".$_POST['nombre']."</b>, ¿En realidad es usted?";
echo "<br /><br />";
echo "<a href='comosea.php'>Volver</a>";
}
?>
</body>
</html>