| .. | |||||
| uploads | |||||
| wp-site | |||||
| index.php | |||||
| php.ini | |||||
| upload.php |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Multiple File Upload</title>
</head>
<body>
<h2>Upload Multiple Files</h2>
<form action="upload.php" method="post" enctype="multipart/form-data">
<label>Select files:</label>
<input type="file" name="files[]" multiple>
<input type="submit" name="submit" value="Upload">
</form>
</body>
</html>
| .. | |||||
| uploads | |||||
| wp-site | |||||
| index.php | |||||
| php.ini | |||||
| upload.php |