简体   繁体   中英

Charset works in php but not in HTML

I am having a strange issue. I have Swedish characters. My charset works fine when in loop and being pulled from mysql using PHP but when I simply enter HTML text Swedish character Å, Ä and Ö it does not work. Currently this is my set Charset:

<meta http-equiv="content-type" content="text/html" charset="ISO-8859-1">

Here is a picture of how it looks in the browser:

在此处输入图片说明

Now here is a picture of data being pulled from Mysql (in loop) on the same page:

在此处输入图片说明

If this question has been asked before, please direct me to the page. Could it be somethign to do with the actual page encoding?

您应该尝试这样:

<meta http-equiv="content-type" content="text/html" charset="UTF-8">

Probably the file itself ist stored in UTF-8 .Try and save it as a ANSI file. In notepad++ this can be done via Encoding > Encode in ANSI in the menubar. Or try to change the meta tag as already suggested.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM