Hello,
I'm trying to do something I thought would be very simple. I need to display a "degree" symbol as part of my PHP output, and I can't figure it out. I'm trying to use the ASCII ° code. If I try:
echo °
I get an error. If I try:
echo "°";
I simply display ° on the screen. What am I missing? How can I display a degree symbol?
Thanks!