This code works and displays the £ sign correctly:
<?php
$feescharged=nl2br(mysql_result($result,$counter,"feerange"));
$feescharged=htmlentities($feescharged);
echo $feescharged ?>
This code, looks identical to me:
<?php
$thisrate=nl2br(mysql_result($result,$counter,"rates"));
$thisrate=htmlentities($thisrate);
echo $thisrate;?>
but instead of a £ sign, display a ,
!!!
Can anyone help me with a reason for this happening?
Regards
Elizabeth