I have a problem with some json decode of my products, which have special characters "æøå".
Decode code + echo:
$products = json_decode($details['items'],true);
foreach($products as $pro){
..
<?php echo $pro['name']; ?>
..
In my database the name of the product looks like this: 'SpÃ¥ner'. However, in the echo it's: 'Spu00e5ner'. It need to be 'Spåner'.
I know the code isn't updated, but there gotta be a way to show the special characters.