I have a TEXT column in my SQL database that contains a £ char in it. I retrieve this column via an sql query and echo it as such:
echo "<div id=\"styler\">$textNote</div>";
But this £ sign appears as � on the page. The rest of the text appears normally.
If I manually input a £ sign on the page like this:
<p>£</p>
it appears normally.
How can I solve this?