The Little Guy Posted December 19, 2008 Share Posted December 19, 2008 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? Quote Link to comment https://forums.phpfreaks.com/topic/137619-file-input-accepted-file-types/ Share on other sites More sharing options...
xtopolis Posted December 19, 2008 Share Posted December 19, 2008 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. Quote Link to comment https://forums.phpfreaks.com/topic/137619-file-input-accepted-file-types/#findComment-719357 Share on other sites More sharing options...
The Little Guy Posted December 19, 2008 Author Share Posted December 19, 2008 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. Quote Link to comment https://forums.phpfreaks.com/topic/137619-file-input-accepted-file-types/#findComment-719364 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.