データベースに : ( ) のような Unicode 文字を挿入しようとしていますが、その ( ) をテキストエリアに挿入すると、空のフィールドが追加されますか?!
では、そのような文字をデータベースに追加するにはどうすればよいですか?
私のデータベースは次のとおりです。
CREATE TABLE `t1` (
`id` int(4) NOT NULL auto_increment,
`msg` varchar(500) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 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>