Jump to content

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.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.