Jump to content

File Input Accepted File Types


The Little Guy

Recommended Posts

I have never tried this before, but is it possible to tell a browser what types of files are valid in a "file" input?

 

I would like to tell the open dialog box that I only want to allow jpg/jpeg, gif, and png

 

is this possible?

 

if not with HTML, how about JavaScript?

Link to comment
https://forums.phpfreaks.com/topic/137619-file-input-accepted-file-types/
Share on other sites

HTML:  Yes, but no.

http://www.w3schools.com/TAGS/att_form_accept.asp

(there is an attribute, but it is not supported)

 

Javascript: ~unsure

You could probably check the extension on the submit attempt.

 

But since all this can be bypassed, you will ultimately have to ensure the type fits your wants on the server side.  Remember, I could make any form I wanted on my server and target your server for the action attribute; as long as I match your $_POST[] array names, your server (by default) would try to accept it.

But since all this can be bypassed, you will ultimately have to ensure the type fits your wants on the server side.  Remember, I could make any form I wanted on my server and target your server for the action attribute; as long as I match your $_POST[] array names, your server (by default) would try to accept it.

 

I know, I just want it for ease of use.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.