Advertisement
tobitaz

submit.php

Sep 16th, 2014
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <form action="" method="post">
  2. link : <textarea name="lin">http://</textarea><input type="submit"></form>
  3.  
  4.  
  5.  
  6.  
  7. <?php
  8.  
  9. $link = $_POST["lin"];
  10.  
  11. if($link != null){
  12. $f = fopen("link.txt", "w+");
  13. fwrite($f, $link);
  14. fclose($f);
  15.  
  16. echo "<script>window.location = 'gei.php'</script>";
  17. }
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement