I've used this piece of code on two different pages of my site. One of the pages displays the British pound sign, the other shows a question mark in a box. Why is this?
Has to do with character encoding... It depend's on using utf-8, iso-8859-1... the correct way to do it is using the html entity for that character: £
Ah thanks, now I remember. But now if i have £50 it displays "£50". If i have £ 50 it displays "£ 50" (with a space). How can I get rid of the space?