Advertisement
urksiful

PHP Listener

Apr 26th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.01 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5.   <title>Resultados</title>
  6. </head>
  7. <body>
  8.   <h1>Registro completo, verifique sus datos</h1>
  9.   <?php
  10.       $nombre=$_POST['nombre'];
  11.       $apaterno=$_POST['a_paterno'];
  12.       $amaterno=$_POST['a_materno'];
  13.       $telefono=$_POST['telefono'];
  14.       $dia=$_POST['dia'];
  15.       $mes=$_POST['mes'];
  16.       $anio=$_POST['anio'];
  17.       $sexo=$_POST['sexo'];
  18.       $correo=$_POST['correo'];
  19.       $password=$_POST['password'];
  20.       $cpassword=$_POST['cpassword'];
  21.  
  22.       echo '<h2>USUARIO Registrado exitosamente</h2>';
  23.       echo '<table width="500" border="1">
  24.              <tr>
  25.                  <td>Nombre</td>
  26.                           <td>A. Paterno</td>
  27.                  <td>A. Materno</td>
  28.                  <td>Telefono</td>
  29.                  <td>Fecha de Nacimiento</td>
  30.                  <td>Sexo</td>
  31.                  <td>Email</td>
  32.                  <td>Password</td>
  33.              </tr>
  34.              <tr>
  35.                <td>'.$nombre.'</td>
  36.                <td>'.$apaterno.'</td>
  37.                <td>'.$amaterno.'</td>
  38.                <td>'.$telefono.'</td>
  39.                <td>'.$dia.' de '.$mes.' del '.$anio.'</td>
  40.                <td>'.$sexo.'</td>
  41.                <td>'.$correo.'</td>
  42.                <td>'.$password.'</td>
  43.              </tr>
  44.            </table>';
  45.       echo "<h2>Prueba de Refres en segundos</h2>";
  46.   ?>
  47.   <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>
  48.   <p>content = <?php  echo ' '.($tiempo = 2).' ';  ?>  tiempo de espera </p>
  49.   <p>url = <?php  echo ' '.($url = "078cProWebT3Practica1MartinezVeronica.html").' ';  ?> a donde desea redireccionar </p>
  50.   <p>como veran esta etiqueta no es visible </p>
  51.  
  52.   <?php
  53.     echo '
  54.          <meta http-equiv="Refresh" content="'.$tiempo.';url='.$url.'"        />
  55.         ';
  56.   ?>
  57.  
  58.  
  59. </body>
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement