minio-upload/index.php
Kwesi Banson Jnr c3894602f2 Initial commit
2026-03-19 18:54:07 +00:00

15 lines
372 B
PHP

<!DOCTYPE html>
<html>
<head>
<title>Upload to MinIO</title>
</head>
<body>
<h2>Upload File to MinIO</h2>
<form action="upload.php" method="post" enctype="multipart/form-data">
<label>Select file:</label>
<input type="file" name="fileToUpload" required>
<br><br>
<button type="submit">Upload</button>
</form>
</body>
</html>