I am using php code to display Amount from Database And Using Following Code. But In Internet Explorer, Strange characters Are Seen (Please see attached images) Same In Below Region, There is No coding, Till Internet Explorer is showing some strange character.
I have attached 2 images - one from IE And second is from Chrome Browser.
code used to display amount is -
$qty = $row['total_amount'];
setlocale(LC_MONETARY, 'en_IN');
$amount = money_format('%.0n', floor($qty));
And in table showing amount -
<?echo $amount;?>
In Below Part where Blank Space Should Be there, IE is showing strange characters, CODE Is -
<div width="90%" style="border:2px outset #336600; border-radius:10px; padding:5px;"><b>Alphabetical Doctors List Who Donated For High Court Case</b><br>
And Then pagination php code and following code -
<div><?php echo Pages("tutorials",$perpage,"index.php?"); ?></div>
What can be reason and Solution ?
Image 1 -(Internet Explorer)
Image 2 - (Chrome)