Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <?php
  2.  
  3. ?>
  4.  
  5. <!DOCTYPE html>
  6. <html>
  7. <head>
  8. <title>Upload File</title>
  9. </head>
  10. <body>
  11. Silahkan upload file disini :
  12. <form action="form4.php" method="POST" enctype="multipart/form-data">
  13. <input type="file" name="gambar">
  14. <input type="submit" name="upload" value="upload">
  15. </form>
  16. </body>
  17. </html>
  18.  
  19. <?php
  20. if (isset($_POST['upload'])) {
  21. echo "Disini akan ditampilkan hasil upload.<br/>";
  22. $gambar = $_FILES['gambar'];
  23. $namafile = uniqid().$gambar['name'];
  24. move_uploaded_file($gambar['tmp_name'], $namafile);
  25. echo "<img src = '".$namafile."' width = 100px>";
  26. }
  27. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement