Langkah 1: Buat Halaman HTML tempat meletakkan Kode HTML.
Langkah 2: Di Bagian Bawah Halaman Kode HTML (footer) Buat Javascript: dan letakkan Kode Jquery di tag Script.
Langkah 3: Buat File PHP dan salin kode php sebelumnya. setelah Kode Jquery di $.ajaxurl Kode terapkan yang mana di nama file php Anda.
JS
//$(document).on("change", "#avatar", function() { // If you want to upload without a submit button
$(document).on("click", "#upload", function() {
var file_data = $("#avatar").prop("files")[0]; // Getting the properties of file from file field
var form_data = new FormData(); // Creating object of FormData class
form_data.append("file", file_data) // Appending parameter named file with properties of file_field to form_data
form_data.append("user_id", 123) // Adding extra parameters to form_data
$.ajax({
url: "/upload_avatar", // Upload Script
dataType: 'script',
cache: false,
contentType: false,
processData: false,
data: form_data, // Setting the data attribute of ajax with file_data
type: 'post',
success: function(data) {
// Do something after Ajax completes
}
});
});
HTML
<input id="avatar" type="file" name="avatar" />
<button id="upload" value="Upload" />
Php
print_r($_FILES);
print_r($_POST);