<!DOCTYPE html> <html lang="fr"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Upload de fichier avec version</title> </head> <body> <h1>Uploader un fichier</h1> <form action="upload02.php" method="POST" enctype="multipart/form-data"> <label for="fichier">Choisir un fichier :</label> <input type="file" id="fichier" name="fichier" required> <br><br> <button type="submit">Uploader</button> </form> </body> </html>