as it stands, I have an input field for someone to select a file to upload. It's filtered to only show one extension. That's fine. There's three files with the exact same filename (exception being the extension) that I want to upload
I only want the user to select the .txt file, but I want the other three uploaded as well.
example.txt, example.png, example.htc, example.gif
My current train of thought is to make three more upload fields, set them to display: none and use jquery to get the filename from the visible upload field. Is this a bad idea?