Japanese Kanji in forms and passing via POST

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • empiresolutions
    New Member
    • Apr 2006
    • 162

    Japanese Kanji in forms and passing via POST

    I hope this question is in the right forum. I figured since the end result is a PHP result it fits here.

    I have a normal HTML form. In it are text fields. Some of my customers will be filling the form with Kanji and Katakana characters. The form shows as filling fine, but when submitted, the returning POST values are empty. I have checked all over the web and i just cant seem to find anything about what I'm missing.

    I do have meta tag
    Code:
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    Any help is much appreciated. Thanks.
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    if $_POST is empty, you didn’t do a post submit.

    Comment

    • johny10151981
      Top Contributor
      • Jan 2010
      • 1059

      #3
      Try test printing

      Code:
      print_r($_POST);
      print_r($_GET);

      Comment

      • empiresolutions
        New Member
        • Apr 2006
        • 162

        #4
        I'm posting other data as well and it comes through fine. I am viewing results with a print_r. Latin characters also do not pass.

        Comment

        • Dormilich
          Recognized Expert Expert
          • Aug 2008
          • 8694

          #5
          maybe the according form elements do not have a name or are not part of the form?

          Comment

          Working...