家伙.当我在西里尔字母上键入任何内容时:ЦветанаПиронкова,然后单击提交(进入表格),它会显示它(并将其保存在mysql表格中),如: amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp...
家伙.当我在西里尔字母上键入任何内容时:ЦветанаПиронкова,然后单击提交(进入表格),它会显示它(并将其保存在mysql表格中),如:& amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; ;&放大器;放大器;#1077;&放大器;放大器;#1090;&放大器;放大器;#1072;&放大器;放大器;#1085;&放大器;放大器;#1072; &放大器;放大器;#1055;&放大器;放大器;#1080;&放大器;放大器;#1088;&放大器;放大器;#1086;&放大器;放大器;#1085;&放大器;放大器;#1082;&放大器;放大器;#1086;&安培;放大器;#1074;&放大器;放大器;#1072;
我没有任何想法如何解决它.我认为问题来自htmlspecialchars,但我不知道.这是我的索引文件:
<?php // connect to the database
include('connect-db.php');
// get results from database
$result = mysql_query("SELECT * FROM players")
or die(mysql_error());
mysql_query("SET NAMES UTF8");
// display data in table
echo "<p><b>View All</b></p>";
echo "<table class=\"table table-bordered table-hover\" border='1' cellpadding='10'>";
echo "<tr> <th>ID</th> <th>Mqsto</th> <th>Ime</th> <th>Tochki</th> <th></th> <th></th></tr>";
// loop through results of database query, displaying them in the table
while($row = mysql_fetch_array( $result )) {
// echo out the contents of each row into a table
echo "<tr>";
echo '<td>' . $row['id'] . '</td>';
echo '<td>' . $row['mqsto'] . '</td>';
echo '<td>' . $row['ime'] . '</td>';
echo '<td>' . $row['tochki'] . '</td>';
echo '<td><a href="editr.php?id=' . $row['id'] . '">Edit</a></td>';
echo '<td><a href="deleter.php?id=' . $row['id'] . '">Delete</a></td>';
echo "</tr>";
}
// close table>
echo "</table>";
?>
<p><a href="new.php">Add a new record</a></p><br><br>
这是我的new.php文件:
<?php
/*
NEW.PHP
Allows user to create a new entry in the database
*/
// creates the new record form
// since this form is used multiple times in this file, I have made it a function that is easily reusable
function renderForm($mqsto, $ime, $tochki, $error)
{
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>New Record</title>
</head>
<body>
<?php
// if there are any errors, display them
if ($error != '')
{
echo '<div style="padding:4px; border:1px solid red; color:red;">'.$error.'</div>';
}
?>
<form action="" method="post">
<div>
<strong>Mqsto: *</strong> <input type="text" name="mqsto" value="<?php echo $mqsto; ?>" /><br/>
<strong>Ime: *</strong> <input type="text" name="ime" value="<?php echo $ime; ?>" /><br/>
<strong>Tochki: *</strong> <input type="text" name="tochki" value="<?php echo $tochki; ?>" /><br/>
<p>* required</p>
<input type="submit" name="submit" value="Submit">
</div>
</form>
</body>
</html>
<?php
}
// connect to the database
include('connect-db.php');
mysql_query("SET NAMES UTF8");
// check if the form has been submitted. If it has, start to process the form and save it to the database
if (isset($_POST['submit']))
{
// get form data, making sure it is valid
$mqsto = mysql_real_escape_string(htmlspecialchars($_POST['mqsto']));
$ime = mysql_real_escape_string(htmlspecialchars($_POST['ime']));
$tochki = mysql_real_escape_string(htmlspecialchars($_POST['tochki']));
// check to make sure both fields are entered
if ($mqsto == '' || $ime == '' || $tochki == '')
{
// generate error message
$error = 'ERROR: Please fill in all required fields!';
// if either field is blank, display the form again
renderForm($mqsto, $ime, $tochki, $error);
}
else
{
// save the data to the database
mysql_query("INSERT players SET mqsto='$mqsto', ime='$ime', tochki='$tochki'")
or die(mysql_error());
// once saved, redirect back to the view page
header("Location: ranglista.php");
}
}
else
// if the form hasn't been submitted, display the form
{
renderForm('','','','');
}
?>
解决方法:
你有没有将数据库charset设置为UTF-8并在你的html中使用它?
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
还记得UTF-8西里尔文内部数据库占用2个字节,所以在设置varchar或类似大小时要注意(如果要显示3000个字符,则应设置大小为6000)
本文标题为:无法解决西里尔问题.用htmlspecialchars / PHP / MySQL的
基础教程推荐
- html滑动仿悬浮球菜单效果的实现 2022-09-20
- Ajax跨域请求COOKIE无法带上的完美解决办法 2023-02-01
- vue中定义全局声明vscode插件提示找不到问题解决 2023-07-09
- 关于ES6中的箭头函数超详细梳理 2022-08-30
- Ajax提交post请求案例分析 2023-02-23
- php – 将html内容插入mysql表 2023-10-26
- Ajax 高级功能之ajax向服务器发送数据 2023-01-21
- asp错误 '80040e21' 多步 OLE DB 操作产生错误 2023-07-10
- 在vue项目中封装filter过滤组件 2023-10-08
- ajax实现修改功能 2023-02-01