Hello all,
need your help
I have problem with HTML form attributes: combining charset with enctype. I set in form tag
enctype="multipart/form-data;charset=UTF-8"
but this solved the character problem. But it broke the file upload capability in FF 2 through 3.5. Firefox accepts all the text that the user submits, but not the file data. It acts totally like it should, but as if there was no file submitted. Everything works fine in Safari.
I also tried
Code: Select all
enctype="multipart/form-data" accept-charset="UTF-8"
, but that had no effect on the character problem.
Any ideas for ways around this?
need your help
I have problem with HTML form attributes: combining charset with enctype. I set in form tag
enctype="multipart/form-data;charset=UTF-8"
but this solved the character problem. But it broke the file upload capability in FF 2 through 3.5. Firefox accepts all the text that the user submits, but not the file data. It acts totally like it should, but as if there was no file submitted. Everything works fine in Safari.
I also tried
Code: Select all
enctype="multipart/form-data" accept-charset="UTF-8"
, but that had no effect on the character problem.
Any ideas for ways around this?