Is there a way to encode characters from a RSS feed without having to use iconv()?
I need to convert to Portuguese character set.
Cheers! ๐
If it's data in an element you can use the <![CDATA[put your stuff in here]]> to prevent it being parsed by the xml engine.
Thnks Bubblenut.
Shouldnยดt UTF8_encode() work (since I need to encode from iso to utf8)? Cause its not working on this.
cheers!