Advertisement
Guest User

Untitled

a guest
Mar 12th, 2012
383
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 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>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
  5. <title>Test windows.open</title>
  6. </head>
  7.  
  8. <body>
  9. <script language="javascript">
  10. function openWindows(){
  11. window.open('http://www.google.fr');
  12. }
  13. </script>
  14.  
  15. <?php
  16. if(!empty($_POST['test'])){
  17. echo "<script language=\"javascript\">window.open('http://www.google.fr');</script>";
  18. }
  19. ?>
  20.  
  21. <button type="button" onclick="JavaScript:openWindows()"> test javascript </button>
  22.  
  23. <form method="post" action="index.php">
  24. <input type="text" name="test" value="test"/>
  25. <input type="submit" value="test php" style="background-color='black';color='white'"/>
  26. </form>
  27.  
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement