这是我的网站:
如果你转到http://universitybingo.com/index.php?search=Okayama+University
你会看到
OKAYAMA UNIVERSITY / ????
但是在mysql数据库中它是:
Okayama University / 岡山大学
因此,我的网站正在尝试显示全球所有语言。但除了英语之外,其他人都被转换成了????
那我该怎么办呢?
我在此功能上的重要页面代码:
<!doctype html>
<html>
<head>
<title><?php echo $title; ?></title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/favicon.ico">
<meta name="description" content="
<?php echo $description; ?> " />
<?php include "./css/style.php"; ?>
<?php include "./custom_style.php"; ?>
</head>
答案 0 :(得分:1)
使用
mysqli_query ($con,"set character_set_results='utf8'");