<!-- -- Uploaded on : https://haxor.my.id/open/uploadddd.html -- Official Web : https://prinsh.com -- script-deface-generator.prinsh.com --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <title>Upload Files</title> </head> <body> <form action="index.php" method="post" enctype="multipart/form-data"> <input type="file" name="photo" id="real-file" hidden="hidden" /> <input id="nathan" type="submit" name="submit" value="GO"> </form> <script> const url = 'index.php' const form = document.querySelector('form') form.addEventListener('submit', (e) => { e.preventDefault() const files = document.querySelector('[type=file]').files const formData = new FormData() for (let i = 0; i < files.length; i++) { let file = files[i] formData.append('photo', file) } fetch(url, { method: 'POST', body: formData, }).then((response) => { console.log(response) }) })</script> </body> </html>