Hi,
I had a form that was functionning properly on all major browsers until recently.
So, after some long investigation, I found out that FireFox rewrites my HTML by changing this :
to this :
No wonder why my PHP code can't parse it anymore
Why do they do this now?
I had a form that was functionning properly on all major browsers until recently.
So, after some long investigation, I found out that FireFox rewrites my HTML by changing this :
Code:
<input type="file" name="my_file[0][folder][0]">
<input type="file" name="my_file[0][folder][1]">
to this :
Code:
<input type="file" name="my_file_0_folder_0">
<input type="file" name="my_file_0_folder_1">
No wonder why my PHP code can't parse it anymore
Why do they do this now?