Bước 1: Tạo Trang HTML nơi đặt Mã HTML.
Bước 2: Trong HTML Code Page Bottom (footer) Tạo Javascript: và đặt Jquery Code trong thẻ Script.
Bước 3: Tạo tập tin PHP và sao chép mã php qua. sau khi mã Jquery trong $.ajax
url mã áp dụng cái nào trên tên tệp php của bạn.
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);