ID: 35183 User updated by: lzx21cn at 21cn dot com -Summary: write into mysql with utf8 not Reported By: lzx21cn at 21cn dot com -Status: Feedback +Status: Open Bug Type: MySQL related Operating System: debian testing accuracy PHP Version: 4.4.1 New Comment:
you need php file (utf8) ---------------------- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <?php $connect=mysql_connect("localhost","kevin",""); $select=mysql_select_db("kevin",$connect); $query="insert into test1 values (2,\"å大ç空\");"; $result=mysql_query($query); $result=mysql_query("select * from test1;"); $rows=mysql_num_rows($result); for ($i=0;$i<$rows;$i++) { $a=mysql_fetch_array($result); echo "第ä¸ä¸ªå段æ¯ï¼".$a[0]." | "; echo "第äºä¸ªå段æ¯ï¼".$a[1]."<br>"; } mysql_close(); ?> Previous Comments: ------------------------------------------------------------------------ [2005-11-10 17:24:09] [EMAIL PROTECTED] Thank you for this bug report. To properly diagnose the problem, we need a short but complete example script to be able to reproduce this bug ourselves. A proper reproducing script starts with <?php and ends with ?>, is max. 10-20 lines long and does not require any external resources such as databases, etc. If possible, make the script source available online and provide an URL to it here. Try to avoid embedding huge scripts into the report. ------------------------------------------------------------------------ [2005-11-10 16:36:28] lzx21cn at 21cn dot com Description: ------------ write in mysql by utf8 it is wrong! Reproduce code: --------------- 1.modify php.ini ... mbstring.internal_encoding = UTF-8 mbstring.http_output = UTF-8 mbstring.detect_order = UTF-8 2. php file (utf8) $sql="insert into test1 values(2,'å大ç空');"; mysql_query($sql); Expected result: ---------------- *record where id=1 is inputed in gnome-terminal ---- command: mysql IN gnome-terminal (utf8) ---- select * from test1; id | name 1 | ç大欢å 2 | å大ç空 -------------------------------------------------- Actual result: -------------- ---- command: mysql IN gnome-terminal (utf8) ---- select * from test1; id | name 1 | ç大欢å 2 | (something character which I unknow) -------------------------------------------------- ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=35183&edit=1