I have a table where one of the cells in each row contains a form, and the form contains an <input type="file"/> element; here's a minimal example:
<table>
<tr><td><form><input name="thumbnail" type="file"/></form></td></tr>
<tr><td><form><input name="thumbnail" type="file"/></form></td></tr>
</table>
If the user browses to a file in the second row, navigates away from the page before submitting, then uses the Back or Forward button to return to the this page, the selected file ends up being associated with the form in the first row of the table, not the one that they browsed in.
This only happens in Chrome. IE don't seem to remember the file association at all when you navigate back, and IE and Safari get it right.
I found one workaround: give the input a different name (thumbnail1, thumbnail2, etc.) in each form. But this complicates the script that processes the upload, since it can't just use $_FILES['thumbnail'] to get the upload data, it has to search for any thumbnail*. I tried giving the form and inputs different IDs, but that didn't help.
Anyone know a better workaround for this?