web-dev-qa-db-ja.com

php mysql utf-8に挿入

PHPを使用してmysqlのいくつかの記事に挿入します。

これはphpMyAdmin情報です:

_Server: localhost via TCP/IP
Server version: 5.0.85-community-nt
Protocol version: 10
User: root@localhost
MySQL charset: UTF-8 Unicode (utf8) 
_

これが私のテーブル情報です:

_Table   Action  Records 1  Type  Collation  Size  Overhead  
article       10 InnoDB utf8_unicode_ci 16.0 KiB - 
1 table(s)  Sum 10 InnoDB utf8_unicode_ci 16.0 KiB 0 B
_

私は追加します

_<?php header('Content-type:text/html; charset=utf-8'); ?> 
_

私のphpコードの先頭で、mysql_query("set names 'utf-8'");の前にmysql_select_db("data",$db1);を追加します

しかし、mysqlのデータはまだ

_più freddi
_

データを正しく表示するにはどうすればよいですか?

17
yuli chika

ハイフンを取り除きます。そのはず:

mysql_query("SET NAMES utf8");
38

挿入には次のコードを使用します

mysql_query("SET character_set_results = 'utf8', character_set_client = 'utf8', character_set_connection = 'utf8', character_set_database = 'utf8', character_set_server = 'utf8'");
mysql_query($qry);

これは私の場合はうまくいきます

15
shihabudheen

クライアントでも文字エンコーディングを指定する必要があります。

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
1
Aston