0

核心.php

$con=mysqli_connect("localhost","root","","mmogezgini");
header('Content-Type: text/html; charset=utf-8');

游戏列表.php

$result = mysqli_query($con,"SELECT * FROM games");
while($row = mysqli_fetch_array($result))
  {
?>
HTML CODES
<?php echo $row['game_name']; ?>
HTML CODES
<?php }
mysqli_close($con);
?>

我使用像“ö,ç,ğ,ı”这样的土耳其字符,我在数据库中正确地看到了这些字符,但是当我从数据库中选择它们并用 php echo 显示时,它们看起来像问号=(?)我在数据库 utf8_general_ci 上的编码

4

1 回答 1

6
  1. 仔细检查您的 HTML 编码。
  2. http://php.net/manual/en/mysqli.set-charset.php(在你连接到数据库之后:mysqli_set_charset($con, 'utf8');
  3. 您是否使用准备好的语句?(不相关但重要)。
于 2013-11-02T21:53:38.017 回答