I have a problem with posting form containing double byte chars.
The form contains a couple of textfields and a file field for uploading attachments.
Everything works fine if I only use regular characters (files get uploaded, text gets inserted into db), as soon as I input Japanese text, the strings inserted into the db get messed up under the condition that the form looks like this:
<form method="post" enctype="multipart/form-data" action="someurl">
Now when I take out the enctype="multipart/form-data" from the <form> tag, the double byte field values are processed correctly, but the file upload doesn't work.
Any ideas to solve this?