Guest User

Untitled

a guest
May 24th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <?php
  2. session_start();
  3. $_SESSION['usuario']=$_POST['nombre'] ;
  4. $_SESSION['colorfondo']=$_POST['color'];
  5. ?>
  6.  
  7. <html>
  8. <head>
  9. <title>Problema</title>
  10. </head>
  11. <body>
  12.  
  13. <?php
  14. echo "bgcolor=\"$_SESSION['colorfondo']\"";
  15. echo "Nombre del usuario es".$_SESSION['usuario'];
  16. echo "<br><br>";
  17. echo "El color seleccionado es:".$_SESSION['colorfondo'];
  18. ?>
  19.  
  20.  
  21. </body>
  22.  
  23. </html>
Add Comment
Please, Sign In to add comment