Page 1 of 1

Why are there all these question marks on my page?

Posted: Fri Jan 01, 2010 7:21 pm
by KostaKondra
Check it out:
http://www.headstudios.com.au

It has something to do with the include("whatever.html") function doesn't it?

Why does PHP make it so difficult?

Can someone explain to me how to fix it?

Regards
PS. By the way if you're not sure what I mean just look at the content
�Video Production Company offers 1001% satisfaction guarantee and even pays you $50 if you�re not satisfied!�
What the hell!!??

Re: Why are there all these question marks on my page?

Posted: Fri Jan 01, 2010 7:41 pm
by requinix
Nothing to do with PHP. Don't blame it for your shortcomings.

Code: Select all

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
You're telling the browser to display the webpage as UTF-8 but it's really ISO-8859-1. When Firefox finds characters that don't make sense it displays that <?> symbol.

Re: Why are there all these question marks on my page?

Posted: Fri Jan 01, 2010 7:43 pm
by KostaKondra
tasairis wrote:Nothing to do with PHP. Don't blame it for your shortcomings.

Code: Select all

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
You're telling the browser to display the webpage as UTF-8 but it's really ISO-8859-1. When Firefox finds characters that don't make sense it displays that <?> symbol.
It works!!! You're a genius!!! THank you so much. I pledge my life to you to do as you see fit.