gpt4 book ai didi

php - jquery post向数据库添加错误的字符集

转载 作者:行者123 更新时间:2023-11-29 14:15:40 24 4
gpt4 key购买 nike

我在某个地方的字符集配置有问题 - 并且需要一些帮助。

我正在使用 jQuery jeditable 通过 php 将值更新到数据库。当我通过此脚本发布 øæå 时,数据库中将填充 ¸à¥。我也尝试过 utf8_encode,但没有成功。带有 øæå 的常规帖子效果很好

$(document).ready(function() {
$('.update_pipu_comment').editable('http://lin01.test.no/save.php?update=pipu_comment', {
event : 'dblclick',
submit : 'ok',
indicator : '<img src="image/indicator.gif">',
tooltip : 'doubleclick to edit'
});
});
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php
//save.php
require('config.php');
$postvalue = $_POST[value];
$id = $_POST[id];
$update = $_GET[update];

if($update == 'pipu_comment') {
$res = mysql_query("UPDATE pinpuk SET comment = '$postvalue' WHERE id = '$id'");
}
echo $postvalue;

最佳答案

您可以先将字符集设置为UTF-8:

$query = "SET NAMES 'UTF8'";
mysql_query($query); // this before any insert

此外,您的代码不是 SQL 安全的:

$postvalue = mysql_real_escape_string($_POST['value']);
$id = (int)$_POST['id'];

顺便说一句,您应该尝试迁移到 MySQLi 或 PDO。 Here是一个很好的教程,可以帮助您开始使用 PDO。

关于php - jquery post向数据库添加错误的字符集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12741357/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com