Hi all
When I post my form I run a query to store the posted information to the database as such:
$qry = "UPDATE mytable
SET overview = '".htmlspecialchars($overview, ENT_QUOTES, "UTF-8")."'";
Now when I type pound signs into my content they get stored as such:
£
But when I display these in my web page they come out as black diamond question marks which suggests the characters are unreadable.
I extract and show them as such:
echo html_entity_decode(stripslashes($row['overview']));
[/code]
Why will the pound signs not display correctly?
Thanks for reading.