Glomer2002 Report post Posted April 1, 2007 I try to use accented characters as value for the columns of a column3d chart but the char dont show it I also try to use the URL encode method but nothing, please can you help me . I include the tranform code. Function arregla(cadena) cadena = Replace(cadena,"'","%26apos;") cadena = Replace(cadena," Share this post Link to post Share on other sites
Pallav Report post Posted April 5, 2007 Hi, You need to use: - dataURL method - make sure that the XML is UTF-8 with proper BOM. Share this post Link to post Share on other sites
balrom Report post Posted June 22, 2007 Hi, i'm a newbie in use of fusion charts. what do you mean with proper BOM? have i to add the following lines at the begin of my php script? echo chr(hexdec("ef")); echo chr(hexdec("bb")); echo chr(hexdec("bf")); thanks in advance. Regards. Share this post Link to post Share on other sites
Pallav Report post Posted June 22, 2007 If you're using PHP, it automatically outputs that. Just make sure you're using dataURL method - and in the page which you output XML, you specify the output stream as UTF8 XML. Share this post Link to post Share on other sites
balrom Report post Posted June 22, 2007 Thanks for your reply Pallav, but i don't understand this... what do you mean when you tell "you specify the output stream as UTF8 XML" ? How can i do that with php? Can you give me a little pratical php example? Regards Bartolomeo D'Alia Share this post Link to post Share on other sites
Pallav Report post Posted June 25, 2007 Try something like: //Output it header('Content-type: text/xml'); echo $strXML; ?> Also, what encoding are you using? Share this post Link to post Share on other sites
balrom Report post Posted June 26, 2007 Thanks Pallav, now with the header function all works fine! After adding the header, i simply can output special characters without any type of encoding, for example: echo "Amount, 14.358,00 Share this post Link to post Share on other sites