How do I escape a copyright symbol. I need to have PHP echo the symbol for a page footer.
Thanks,
Josh
How do I escape a copyright symbol. I need to have PHP echo the symbol for a page footer.
Thanks,
Josh
all I can think of what your saying is just to display the copyright symbol...
well
<?php echo "symbol"; ?>
Should do it, the symbol part being the copyright symbol ©.
There are 3 ways to get this symbol,
<?php echo "©"; ?> Should therefore give what you want, as far as I can see.