Php SQL query with question marks (Chinese garbled characters) solution

Source: Internet
Author: User
Tags php example
All the problems found during php connection to mssql are problems. I have learned from my experience that this problem is a coding problem. I will summarize the solutions below. method 1: modify php. the INI file, of course, can be UTF-8 encoded based on your page ,... all the problems found during php connection to mssql are problems. I have learned from my experience that this problem is a coding problem. I will summarize the solutions below.

Method 1: modify the php. ini file. of course, you can set it to UTF-8 based on your page. the code is as follows:

; Mssql. charset = "ISO-8859-1"

Mssql. charset = "GBK"

Method 2: convert data directly in the program. The code is as follows:

Iconv ('gb2312', 'utf-8', $ data)

Method 3: use Ado Connection to set encoding during connection. the code is as follows:

$ Conn = new COM ("ADODB. Connection", NULL, CP_UTF8) or die ("Cannot start ADO ");

PHP example, the code is as follows:

      
 "); // Printaline (" PLEASE? "); // Print (" This will not be displayed due to the above error. ");?>
 Open ("Provider = Microsoft. jet. OLEDB.4.0; Data Source = $ db "); // $ conn-> Open (" DRIVER = {Microsoft Access Driver (*. mdb)}; DBQ = $ db "); $ conn-> Open (" Driver = {SQL Server}; Server = {192.168.22.40}; Database = sugarcrm_db; UID = sa; PWD = 123456; "); // Execute the query and output data $ rs = $ conn-> Execute ('select * FROM accounts ') or die ("error query");?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.