Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Resultados</title>
- </head>
- <body>
- <h1>Registro completo, verifique sus datos</h1>
- <?php
- $nombre=$_POST['nombre'];
- $apaterno=$_POST['a_paterno'];
- $amaterno=$_POST['a_materno'];
- $telefono=$_POST['telefono'];
- $dia=$_POST['dia'];
- $mes=$_POST['mes'];
- $anio=$_POST['anio'];
- $sexo=$_POST['sexo'];
- $correo=$_POST['correo'];
- $password=$_POST['password'];
- $cpassword=$_POST['cpassword'];
- echo '<h2>USUARIO Registrado exitosamente</h2>';
- echo '<table width="500" border="1">
- <tr>
- <td>Nombre</td>
- <td>A. Paterno</td>
- <td>A. Materno</td>
- <td>Telefono</td>
- <td>Fecha de Nacimiento</td>
- <td>Sexo</td>
- <td>Email</td>
- <td>Password</td>
- </tr>
- <tr>
- <td>'.$nombre.'</td>
- <td>'.$apaterno.'</td>
- <td>'.$amaterno.'</td>
- <td>'.$telefono.'</td>
- <td>'.$dia.' de '.$mes.' del '.$anio.'</td>
- <td>'.$sexo.'</td>
- <td>'.$correo.'</td>
- <td>'.$password.'</td>
- </tr>
- </table>';
- echo "<h2>Prueba de Refres en segundos</h2>";
- ?>
- <p>como veran esta equita no es visible, el codigo se ejecuta desde el principio, leyendo variables, imprimiendo una tabla, y al final hace el refresh donde se indica </p>
- <p>content = <?php echo ' '.($tiempo = 2).' '; ?> tiempo de espera </p>
- <p>url = <?php echo ' '.($url = "078cProWebT3Practica1MartinezVeronica.html").' '; ?> a donde desea redireccionar </p>
- <p>como veran esta etiqueta no es visible </p>
- <?php
- echo '
- <meta http-equiv="Refresh" content="'.$tiempo.';url='.$url.'" />
- ';
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement