我的桌子是这样的——
province_id int(11)
province_title char(200) utf8_general_ci
parent int(8) int(2)
我直接从 phpMyadmin 插入了很多数据(不是从 php 页面)。但是当我检索这些数据并在 php 页面中显示它们时,特殊字符就会出现问题。
像-
Québec shows - Qu�bec.
我的 html 标头看起来像 -
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
我认为问题可能是在插入数据时发生的。如何在 phpmyadmin 中转换这些数据?有什么帮助吗?