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!!??
Why are there all these question marks on my page?
Moderator: General Moderators
-
KostaKondra
- Forum Newbie
- Posts: 16
- Joined: Thu Nov 19, 2009 8:26 am
Re: Why are there all these question marks on my page?
Nothing to do with PHP. Don't blame it for your shortcomings.
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.
Code: Select all
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />-
KostaKondra
- Forum Newbie
- Posts: 16
- Joined: Thu Nov 19, 2009 8:26 am
Re: Why are there all these question marks on my page?
It works!!! You're a genius!!! THank you so much. I pledge my life to you to do as you see fit.tasairis wrote:Nothing to do with PHP. Don't blame it for your shortcomings.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.Code: Select all
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />