5
How to upload images only(.png
and .jpeg
)? Do not allow the choice of another file type.
I’m using as per below:
<input type="file" name="arquivos" class="btn btn-success" multiple/>
At the time of selecting the photos I do not want to allow the choice of other file types.
Thank you! It worked, however, on the file selection screen, on the option to change the file type, allows you to change to "All Files" in this way you can select any file. Is there any way to block it??
– Janderson Thomaz
Add:
accept="image/png, image/jpeg"
in theinput
from the file selection screen.– Ricardo
I already added but as I said: allows the change to "All Files" would block it??
– Janderson Thomaz
I’m using this: <input type="file" name="files" class="btn btn-Success" Accept="image/png, image/jpeg" Multiple />
– Janderson Thomaz
enter the code of
opção de mudar o tipo de arquivo
– Ricardo
There is no code to change the file type. I mean when we click on the input that opened the selection screen to choose the files as link (http://www.tickimg.com.br/uploads/_example.png)
– Janderson Thomaz
I don’t trust to use validation in this way, because the user who knows HTML can remove this configuration and upload any file. There are ways to do this validation via PHP which is much safer( if you are using this language).
– Samuel Carvalho
Where do I put onsubmit="Checkfiles(this)" ? No form?
– fabricio_wm