Hello...
I'm having troubles using "POST" command in my app. I have php script online, and when I send some parameters with 'POST', and put the result into my variable, I get text full of weird characters (for example, chars like č ć ž š đ are not showed).
However, If I just use command "put myLink into myVariable", all characters are perfect.
Thank you!
UTF-8 problems with POST
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Re: UTF-8 problems with POST
When sending text out of LC, convert it to UTF8 first with the textEncode function. The reverse is true when getting text from external sources, use textDecode to convert to LC native text.
Jacqueline Landman Gay | jacque at hyperactivesw dot com
HyperActive Software | http://www.hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
Re: UTF-8 problems with POST
I managed to get it working somehow with uniencode functions...