I'm looking for a HTML form upload just for ODT-Files. I need to know the parameter for accept
.
<form method="post" action="upload.php" >
<input type="file" name="file_upload" accept="" />
<button type="submit">Upload</button>
</form>
I'm looking for a HTML form upload just for ODT-Files. I need to know the parameter for accept
.
<form method="post" action="upload.php" >
<input type="file" name="file_upload" accept="" />
<button type="submit">Upload</button>
</form>
With a search in stackoverflow I found the I have to define the correct MIME type.
For ODT the MIME type is
application/vnd.oasis.opendocument.text
The HTML code has to look like that: