Quote Originally Posted by jamielife View Post
Well darn, I thought I had figured it out. Unfortunately character encoding/charsets and all that isn't my area of expertise. I know when I set my charset to 'UTF-8 w/o BOM' as per the video I was able to see GBP, Euro, and the Yen. However maybe there's something else missing. What IDE are you using to change the encoding?

I had the same problem with Greek encoding so i just replaced the following line so that the Greek Description not to show.

'link' => $prod_url,
'caption' => 'Price: ' . $price . $cur,
'description' => 'Click for more details',

so i just suggest trying replacing the .$cur, with '£' so that it is like that

'caption' => 'Price: ' . $price '£',