."/> .">
Home >Backend Development >PHP Problem >php website garbled code
First method: Solve the problem of Chinese garbled characters in HTML
If your HTML file has garbled characters, then you can Add UTF8 encoding (international encoding) to the head tag: UTF-8 has no national encoding, that is, it is independent of any language and can be used in any language.
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
Second: HTML and PHP mixed page solution
How to mix HTML and PHP, in addition to following the first method In addition to the operation, you also need to add this code at the top of the PHP file:
<?php header("content-type:text/html;charset=utf-8"); //设置编码 ?>
The third type: the Chinese garbled problem of pure PHP pages (the data is static)
If your PHP page is garbled, just add the following code at the beginning of the page.
<?php header("content-type:text/html;charset=utf-8"); //设置编码 ?>
Fourth type: PHP Mysql Chinese garbled problem
In addition to following the third operation, you also need to add it to your data Add database encoding before querying/modifying/adding. Moreover, it is worth noting that the UTF8 here is different from the previous one, there is no horizontal line in the middle.
<?php mysql_query('SET NAMES UTF8'); //接下来的就是查出数据或者修改,增加 ?>
UTF-8 encoding is just one of the encodings. If you don’t want to use utf-8 encoding, you can also use other encodings. Just replace UTF-8 with the encoding you want to use. Currently, the Chinese website The two encodings mainly used in development are GB2312 and UTF-8.
One thing to note: The mysql_query("set names 'coding'"); encoding added before the PHP program that needs to perform database operations must be consistent with the PHP encoding. If PHP If the encoding is gb2312, then the mysql encoding is gb2312. If it is utf-8, then the mysql encoding is utf8, so that there will be no garbled characters when inserting or retrieving data.
Recommended tutorial: PHP video tutorial
The above is the detailed content of php website garbled code. For more information, please follow other related articles on the PHP Chinese website!