gpt4 book ai didi

php - CKEditor插入特殊字符

转载 作者:行者123 更新时间:2023-11-29 01:30:48 25 4
gpt4 key购买 nike

我有几个使用 CKEditor 4 的所见即所得文本区域。我将数据存储在 MYSQL 数据库中。如果我将文本区域留空并将其提交到数据库,CKEditor 会自动插入一个特殊字符 Â 。有人知道解决这个问题的方法吗?

HTML:

<textarea cols="60" rows="8" name="description" class="ckeditor"></textarea>

PHP:

// Handler stuff here

$name = $_POST['name'];
$title = $_POST['title'];
$description = $_POST['description'];

$sql = "INSERT INTO `aircraft`
(name,
description,
title)
VALUES (?, ?, ?)";
$sth = $this->dbh->prepare($sql);
$sth->execute(array($name, $description, $title));

最佳答案

您实际上遇到了一个刚刚修复的错误:http://dev.ckeditor.com/ticket/9732

重新下载CKEditor,清除浏览器缓存,问题应该消失了。

关于php - CKEditor插入特殊字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13652186/

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