我在某处的字符集配置有问题 - 需要一些帮助。
我正在使用 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;