Advertisement
bulfaitelo

Untitled

Aug 16th, 2012
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <head>
  5. <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
  6. <meta name="author" content="MESMERiZE" />
  7.  
  8. <title>Pagina 02</title>
  9. </head>
  10.  
  11. <body>
  12.  
  13.  
  14.  
  15. <?php
  16.  
  17.  
  18. session_start();
  19.  
  20. //$nome = $_POST['nome'];
  21. //$_SESSION['nome'] = $nome;
  22. echo $_SESSION['nome']."<br>";
  23.  
  24. $cpf = $_POST['cpf'];
  25. $_SESSION['cpf'];
  26. echo $_SESSION['cpf']."<br>";
  27.  
  28. $nasc = $_POST['nasc'];
  29. $_SESSION['nasc'];
  30. echo $_SESSION['nasc']."<br>";
  31.  
  32. $cor = $_POST['cor'];
  33. $_SESSION['cor'];
  34. echo $_SESSION['cor']."<br>";
  35.  
  36. $sab_sorvete = $_POST['sab_sorvete'];
  37. $_SESSION['sab_sorvete'];
  38. echo $_SESSION['sab_sorvete']."<br>";
  39.  
  40.  
  41.  
  42. ?>
  43.  
  44.  
  45. <a href="pagina03.php"> pagina 3</a>
  46.  
  47.  
  48.  
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement