how can i set japanese string in the cookie

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • RandyTh

    how can i set japanese string in the cookie

    I am trying to set the japanese characters in this useremail cookie.
    The thing is sometimes the $HTTP_COOKIE_VA RS['username'] returns me a
    garbled string;
    Do I have to encode first before I save it in the cookie?

    setcookie( "username", $username, time()+3600*24* 30*12*5, "/",
    www.mydomain.com, 0 );

    SK


  • Robin

    #2
    Re: how can i set japanese string in the cookie

    Have you tried utf8encode($use rname)?

    RandyTh wrote:[color=blue]
    > I am trying to set the japanese characters in this useremail cookie.
    > The thing is sometimes the $HTTP_COOKIE_VA RS['username'] returns me a
    > garbled string;
    > Do I have to encode first before I save it in the cookie?
    >
    > setcookie( "username", $username, time()+3600*24* 30*12*5, "/",
    > www.mydomain.com, 0 );
    >
    > SK
    >
    >[/color]

    Comment

    • RandyTh

      #3
      Re: how can i set japanese string in the cookie


      "Robin" <robin.niemeyer @gmx.net> wrote in message
      news:44412d8c$0 $11065$9b4e6d93 @newsread4.arco r-online.net...[color=blue]
      > Have you tried utf8encode($use rname)?
      >
      > RandyTh wrote:[color=green]
      >> I am trying to set the japanese characters in this useremail cookie.
      >> The thing is sometimes the $HTTP_COOKIE_VA RS['username'] returns me a
      >> garbled string;
      >> Do I have to encode first before I save it in the cookie?
      >>
      >> setcookie( "username", $username, time()+3600*24* 30*12*5, "/",
      >> www.mydomain.com, 0 );
      >>
      >> SK
      >>[/color]
      >utf8encode[/color]
      For the setcookie, I remember we don't have to do anything about the
      encoding.
      'cause the function itself is taking care of the encodeing issue.

      The thing is sometimes works and sometimes doesn't
      I don't know why this is happening.

      Shinya


      Comment

      Working...