Código HTML:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>DATOS DE SOLICITUD</title> </style> </head> <body>
Código PHP:
<?php
require_once('php/librerias/clases.php');
$a = new formulario();
if(($a->vaciosqs('27','hiddenField','GET'))==true)
{
echo "Existen campos sin completar, rellene correctamente los campos";
exit;
}
else
{
$Array=array();
$Array=$a->valoreshiddenqs('27','hiddenField','GET');
}
?>
Código HTML:
<table width="100%" border="1" cellpadding="0" cellspacing="0"> <tr> <th colspan="21">Datos Personales </th> </tr> <tr> <th width="4" rowspan="2"> </th> <th width="60">Usuario</th> <th width="43">Email</th> <th width="89">Contraseña</th> <th width="61">Nombre</th> <th colspan="2">Apellidos</th> <th colspan="2">DNI</th> <th width="68">Empresa</th> <th width="73">Direccion</th> <th width="31">C.P.</th> <th width="77">Población</th> <th width="72">Provincia</th> <th width="33">País</th> <th colspan="2">Telf. Fijo </th> <th colspan="2">Telf. Movil</th> <th width="20" colspan="2" rowspan="2"> </th> </tr> <tr>
Código PHP:
<?php
foreach($Array as $valor)
{
$cont++;
if($cont <= 18)
{
echo '<td>'.$valor.'</td>';
}
else{break;}
}
?>
Código HTML:
</tr> <tr> <td colspan="21"> </td> </tr> </table> <table width="100%" border="1" cellpadding="0" cellspacing="0"> <tr> <th colspan="21">Datos Bancarios </th> </tr> <tr> <th> </th> <th>Nombre</th> <th colspan="2">Apellidos</th> <th colspan="2">DNI</th> <th colspan="15">Num. Cuenta </th> </tr> <tr>
Código PHP:
<?php
//echo '<td> </td>';
for($datosB=18;$datosB<28;$datosB++)
{
echo '<td>'.$Array[$datosB].'</td>';
}
//echo '<td colspan="11"> </td>';
?>
Código HTML:
</table> </body> </html>