PHPを使用してmysql dbに特殊文字(エンティティ)を挿入しようとしています。PHPを使用して特殊文字int mysqldbを挿入する方法
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "test";
$autoid = $_REQUEST["autoid"];
// $explanation = htmlspecialchars($_REQUEST["explanation"]);
$explanation = mysql_real_escape_string("<p>hello how are you Ê</p>");
echo $explanation;
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
//$explanation = utf8_decode(trim(mysql_real_escape_string($explanation));
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql = "UPDATE question_master SET explanation='$explanation' WHERE autoid=$autoid";
if ($conn->query($sql) === TRUE) {
echo "Record updated successfully";
} else {
echo "Error updating record: " . $conn->error;
}
$conn->close();
?>
私が合格しようとする文字列が<p>hello how are you Ê</p>
ですが、MySQLdbはで更新した後、それが<p>hello how are you Ê</p>
となります。私はmysqlに新しいです、何がうまくいかないか考えません。テーブルの照合順序があるutf8mb4_bin
表の照合順序は、ある utf8_bin
http://stackoverflow.com/questions/8568301/how-to-insert-special-language-charactersだから、行くための適切な方法は次のようなものになるだろう-in-php-into-mysql-database – ashanrupasinghe
ADD "" –