I'm building an image upload script.
So far its all going to plan and actually the php isn't the problem.
I was wondering if anyone knows how to restrict the files shown by the browse box to just jpegs? At the moment my field looks like this:
<input name="file" id="file" accept="image/jpeg" size="60" type="file" />
However, clicking browse still shows all files.
I'd realy prefer it if the filter in the browse box could be changed to *.jpg.
Thanks for any help.