Крок 1: Створіть HTML-сторінку, де розмістити HTML-код.
Крок 2: У нижній частині сторінки HTML-коду (нижній колонтитул) створіть Javascript: і помістіть код Jquery в тег Script.
Крок 3: Створіть PHP-файл і копію PHP-коду в минулому. після коду Jquery в$.ajax url коду застосуйте, який із них у вашому імені файлу php.
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);