Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
frontend
html
examples
forms
08file_script.php
08file_script.php
<!DOCTYPE HTML> <html lang="hr"> <head> <meta charset="UTF-8"> <title>Multiple file upload</title> </head> <body> Uploaded files: <ol> <?php foreach($_FILES['pics']['name'] as $val): ?> <li><?= $val ?></li> <?php endforeach; ?> </ol> <br> <hr> <?php var_dump($_FILES['pics']); ?> </body> </html>
Reload page
Preview
W3C validation
Edit Code