![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Newbie
Join Date: Feb 2007
Posts: 6
Rep Power: 0
![]() |
help
can anyone help me in this
i transfer my site in new server but all ë char replace me at << ![]() where to fix this thnx |
|
|
|
|
|
#2 |
|
Programming Guru
![]() |
Re: help
The picture you posted is very glitchy and it's difficult to see what's going on, but it sounds like an issue of character encoding.
The HTML can specify character encoding to override the default provided by the server. Your HTML must be invalid, and was not specifying a character set. The client browser then uses the default provided by the server, which happened to be different between your two servers. Try adding/changing the character content type to: <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> To the <head></head> tags of your HTML markup. Tell me if that helps. |
|
|
|
|
|
#3 |
|
Newbie
Join Date: Feb 2007
Posts: 6
Rep Power: 0
![]() |
Re: help
no bro i avaliable have this fucking prob
|
|
|
|
|
|
#4 |
|
Newbie
Join Date: Feb 2007
Posts: 6
Rep Power: 0
![]() |
Re: help
where to put this <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> in my index.php i cant because say PROB
Parse error: syntax error, unexpected '<' in /home/kosovane/public_html/httpdocs/index.php on line 2 |
|
|
|
|
|
#5 |
|
Programming Guru
![]() |
Re: help
The code I posted is HTML. Not PHP.
You will need to place this where the <head></head> tags are placed.Look for code like is in your HTML/template/PHP. <title>The Title That Appears At The Top Of The Window</title>And if you don't see a content-type near that code in the "head" block, then add the content-type tag to the head code. If you do see one, change the charset to "UTF-8". <head>
... some code will be here ...
<title>The Title Of My Web Page</title>
... some more code will be here ...
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
... some more code will be here ...
</head> |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|