<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Documento sin título</title>
</head>
<body>
<p><h3 align="right">
<?php $fecha=date("d,m,y"); echo $fecha; ?> </h3> </p>
<form action="procesarformcorto.php" method="post">
<table width="40%" border="2">
<tr>
<th align="center" colspan="2"> Ingrese Nombre y Apellido </th>
</tr>
<tr>
<td align="center" width="50%">Carga tu nombre</td>
<td align="center"><input type="text" name="nombre"> </td>
</tr>
<tr>
<td align="center"> Ingresa tu Apellido </td>
<td align="center"><input type="text" name="apellido"></td>
</tr>
<tr>
<td align="center" colspan="2">hombre <input type="radio" name="sexo" value="1"> Mujer <input type="radio" name="sexo" value="2"></td>
</tr>
<tr>
<td align="center" colspan="2"> <select size="1" name="estado">
<option value="a" selected>Casado</option>
<option value="b">Soltero</option>
</select>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="cargar" value="ir"> </td>
</tr>
</table>
</form>
</body>
</html>