Home  >  Article  >  Backend Development  >  Under English NT and SQL, Chinese appears on the page_PHP tutorial

Under English NT and SQL, Chinese appears on the page_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:00:58782browse

Problem: The Chinese characters read from the database are all "?"
Solution:
Step 1: Register Code Page to enable SQL Server to support Chinese
1. Copy the file C_936.nls to system32 in the system directory Directory
2. Use Regedit32.exe to add the following keys:
location: HKEY_LOCAL_MACHINEsystemCurrentControlSetControlNlsCode
Page
value name: 936
value: C_936.NLS
location: HKEY_LOCAL_MACHINEsystemCurrentControlSetCont rolNlsLang
uage
value name: 0804
value: l_intl.nls
3. Use Simplified Chinese character set to rebuild the Master database of SQL server
Step 2.
Add a line to the beginning of the ASP program:
<%@ codepage=936 %>
The advantage of this solution is that it does not require the installation of a Chinese platform system and can run NT stably (the English enterprise version is more stable than
)

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/631180.htmlTechArticleProblem: The Chinese characters read from the database are all "?" Solution: Step 1: Register Code Page to use SQL Server supports Chinese 1. Copy the file C_936.nls to the system32 directory under the system directory 2. Use...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn