Advertisement
Guest User

Untitled

a guest
Aug 29th, 2015
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <head>
  3.  
  4. </head>
  5. <body>
  6. <?php
  7.  
  8. echo '<form name="envio" action ="select2.php" method="get" >
  9. <select name="selector" onchange="envio.submit();">
  10.  
  11. <option value="html">HTML</option>
  12. <option value="css">CSS</option>
  13. <option value="js">JavaScript</option>
  14. <option value="php">PHP</option>
  15. </select>
  16. </form>';
  17. if (isset ($_REQUEST['selector']))
  18. {
  19. ?>
  20. <script type='text/javascript'>
  21. var textoEscogido = '<?php echo $_REQUEST["selector"];?>';
  22. alert(textoEscogido);
  23. </script>
  24. <?php
  25. echo "estamos dentro";
  26. }
  27.  
  28.  
  29. ?>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement