How to send multiple files with Ajax
I have Ajax Code which is sending input:file info, but i have a problem, program is sending the last file info, and I can’t get information about past files What’s wrong? I will be grateful for help HTML Form <input type="file" name="files[]" id="sss" multiple> <div class="bloj"></div> PHP $nkar = $_FILES[‘file’][‘name’]; $nkar_loc = $_FILES[‘file’][‘tmp_name’]; $flr=$_FILES[‘file’]; print_r($flr);… Read More How to send multiple files with Ajax