Advertisement
Guest User

Untitled

a guest
Apr 18th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <form method="GET">
  2. <input type="submit" id="submit" name="submit" value="Start">
  3. </form>
  4. <?php
  5.  
  6. if(isset($_GET['submit'])){
  7. fopen('http://localhost/sn/test2.php?name=ttest11&post=hi1&submit=Start
  8. ','r');
  9.  
  10. fopen('http://localhost/sn/test3.php?name=ttest22&post=hi2&submit=Start
  11. ','r');
  12.  
  13.  
  14. fopen('http://localhost/sn/test4.php?name=ttest33&post=hi3&submit=Start
  15. ','r');
  16. }
  17. ?>
  18.  
  19. <form method="get">
  20. <input type="text" name="name" id="name" size="14" maxlength="20">
  21. <input type="text" name="post" id="post" size="5" maxlength="5" >
  22. <input type="submit" id="submit" name="submit" value="Start">
  23. </form>
  24.  
  25. <?php
  26. if(isset($_GET['submit'])){
  27. // ..... hidden code, to sent messages......
  28. }
  29.  
  30. ?>
  31.  
  32. http://localhost/sn/test2.php?name=ttest11&post=hi1&submit=Start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement