当前位置:Gxlcms > mysql > kindeditor+mysql上传编辑好的有文字和图片的文章,结果数据库里什么都没有

kindeditor+mysql上传编辑好的有文字和图片的文章,结果数据库里什么都没有

时间:2021-07-01 10:21:17 帮助过:11人阅读

mysqlkindeditor





KindEditor PHP






KindEditor.ready(function(K) {
var editor1 = K.create('textarea[name="content1"]', {
cssPath : './editor/plugins/code/prettify.css',
uploadJson : './editor/php/upload_json.php',
fileManagerJson : './editor/php/file_manager_json.php',
allowFileManager : true,
afterCreate : function() {
var self = this;
K.ctrl(document, 13, function() {
self.sync();
K('form[name=example]')[0].submit();
});
K.ctrl(self.edit.doc, 13, function() {
self.sync();
K('form[name=example]')[0].submit();
});
}
});
prettyPrint();
});



(提交快捷键: Ctrl + Enter)


$htmlData = '';
if (!empty($_POST['content1'])) {
if (get_magic_quotes_gpc()) {
$htmlData = stripslashes($_POST['content1']);
} else {
$htmlData = $_POST['content1'];
}
}
include_once("function.php");
include_once("conn/conn.php");

echo "$htmlData";
mysql_query("insert into tb_talk ('img') values ('".$htmlData."')",$conn);
echo 成功;
?>

人气教程排行