Hi,
I’m sorry for my english.
I need to read data from a mySQL remote database and use the following code:
- WWWForm form = new WWWForm();
- form.AddField(“parameterX”, XXX);
- WWW itemsData = new WWW(“Salesforce Einstein 1 Platform for Application Development - Salesforce.com US”, form);
- yield return itemsData;
- string itemsDataString = itemsData.text;
everything works correctly only because special characters such è, à, ò, ù, ², ·, ³ etc are not read correctly and are replaced with the character � in itemsDataString
the file.php sends the data correctly with the right special characters
you can help me?
thank you