Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
why not show spacial charector not show in php tag like as trad " ® " if any know so plz how to solve this query in php

echo ®;
?>
Posted
Updated 17-Apr-15 20:13pm
v2

1 solution

Try this-
PHP
<?php 
header('Content-Type: text/html; charset=ISO-8859-1');
echo ®;
?>


Hope, it helps :)
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900