-1

重複の可能性:
iPhone 絵文字は MySQL に挿入されますが、空白の値になります データベース
に Unicode 文字を挿入します

データベースに : ( ) のような Unicode 文字を挿入しようとしていますが、その ( ) をテキストエリアに挿入すると、データベースに疑問符 (?) が追加されますか?

DB : _

CREATE TABLE `t1` (
  `id` int(4) NOT NULL auto_increment,
  `msg` varchar(500) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8_mb4 AUTO_INCREMENT=7 ;

insert.phpデータを追加するには:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>my page</title>
    </head>

    <body>
    <form id="form1" name="form1" method="post" action="insert-ok.php">
      <p>
        <label for="textarea"></label>
        <textarea name="textarea" id="textarea" cols="45" rows="5"></textarea>
      </p>
      <p>
        <input type="submit" name="button" id="button" value="Submit" />
      </p>
    </form>
    </body>

insert-ok.phpデータを挿入して表示するには:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>my data</title>
</head>

<body>
<?php 
$con = mysql_connect("localhost","root","4530");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }
  mysql_query("set names 'utf8'"); 
mysql_select_db("test", $con); 
$post= $_POST['textarea'];
$sql = "insert into t1 values('$id','$post')";
mysql_query($sql,$con);

$result=mysql_query("select * from t1 ");

while($row = mysql_fetch_array($result))
{

    echo $row['msg'].'<br>';
}
?>
</body>
</html>
4

1 に答える 1

0

SET NAMES utf8mb4 COLLATE utf8mb4_unicode_ci

もう 1 つのことは (ドキュメントにあるように) deprecatedmysql_は Charsets をサポートしていないことです。

于 2012-08-26T10:28:47.577 に答える