I have a PHP page. I just started to add text to the page. When I try to have the text Small Business's I get this: Small Business�s Any thoughts on how correct this? thx,
if you're echo'ing it, try to escape the character echo "Chuck\'s Bar & Grill"; Code (markup): Maybe that should work for ya?
Wow I kind of snickered when I saw this comment; but that did the trick. My encoding was not set correctly. Thanks!
Just to clarify: I'm guessing that you copy and pasted the text from Word or something, right? Those are 'smart' apostrophes and are different from normal apostrophes, hence the problem.
No, I was missing this in my header: <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1"> Code (markup):