18 lines
469 B
PHP
18 lines
469 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Upload Excel</title>
|
|
</head>
|
|
|
|
<body>
|
|
<form action="upload_excel.php" method="POST" enctype="multipart/form-data">
|
|
<label for="file">Upload Excel File:</label>
|
|
<input type="file" name="file" accept=".xlsx, .xls" required>
|
|
<button type="submit">Upload</button>
|
|
</form>
|
|
</body>
|
|
|
|
</html> |