Topic: problem with charset |
|
---|---|
Author | Thread |
Paranoid (IV) Inmate From: INFRONT OF MY PC |
posted 02-23-2010 15:27
Ok this is the scenario. I am developing a website in german an slovene. This means i need following characters: |
Nervous Wreck (II) Inmate From: San Antonio, TX |
posted 08-09-2010 19:17
Chances are you would need to just change the encoding it uses... quote:
|
Maniac (V) Mad Scientist with Finglongers From: Germany |
posted 08-10-2010 09:29
Where is your static text coming from, and how are you loading it into php? |
Bipolar (III) Inmate From: Raleigh, NC |
posted 10-04-2010 16:27
This is the new way to define html5 and the utf-8 charset. code: <!doctype html> <head> <meta charset="utf-8"> </head>
|
Paranoid (IV) Inmate From: Florida |
posted 10-04-2010 23:12
meta elements are practically useless. At best they're redundant, at worst they're misleading bloat. You should be sending the encoding in the server headers ? for Apache you can dump this into a .htaccess file: code: AddDefaultCharset utf-8 |