materi belajar hari ini, bagaimana mengupload file ke dalam server menggunakan script php yang sudah ada yaitu move_uploaded_file, yang berfungsi untuk memindahkan file dari local komputer kita ke server.
berikut kode php nya
1. <?php
2. $uploadDir = ‘./upload/’;
3. if(isset($_POST['upload'])):
4.
5. $fileName = $_FILES['userfile']['name'];
6. $tmpName = $_FILES['userfile']['tmp_name'];
7. $fileSize = $_FILES['userfile']['size'];
8. $fileType = $_FILES['userfile']['type'];
9.
10. $filePath = $uploadDir . $fileName;
11.
12. $result = move_uploaded_file($tmpName, $filePath);
13.
14. if (!$result):
15. echo “Error uploading file”;
16. exit;
17. else:
18. echo “upload sukses”.$filePath;
19. endif;
20.
21. endif;
22.
23. ?>
24. <form action=”<?=$_SERVER['PHP_SELF']?> ” method=”post” enctype=”multipart/form-data”>
25. <table width=”350? border=”0? cellpadding=”1? cellspacing=”1? class=”box”>
26. <tr>
27. <td width=”246?>
28. <input type=”hidden” name=”MAX_FILE_SIZE” value=”5000000?>
29. <input name=”userfile” type=”file” id=”userfile”>
30. </td>
31. <td width=”80?> <input name=”upload” type=”submit” class=”box” id=”upload” value=” Upload “> </td>
32. </tr>
33. </table>
34. </form>
selamat mencoba semoga bermanfaat
10 Manfaat Puasa Bagi Kesehatan
10 tahun yang lalu
3 Response to "Upload File - PHP"
Happy Wednesday! Bloghoppin' here... Hey, I have an interesting tutorial for you that I have written myself. It is about adding Adsense on your Single Post in XML template. I hope you'll like it! God Bless you!
Nice site you have here..
Thanks for the info..I'll use this a lot
MOHON MAAF sebelumnya... cuman sekedar berbagi info mengenai
CARA BARU ISI ULANG PULSA HP
LEBIH PRAKTIS (ngga perlu repot2 lagi datang ke counter pulsa, cukup hanya dengan mngirim sms dari hp anda sendiri)
LEBIH MURAH ( bila dibandingkan dengan harga jual di counter pulsa )
DAPATKAN BONUS PULSA GRATIS Rp. 25.000 SETIAP HARI
INFO LENGKAP DI HTTP://WWW.PRIMAMITRA.BLOGSPOT.COM
Posting Komentar