Home >Backend Development >PHP Tutorial >为何小弟我整合ckeditor和ckfinder后,上传图片成功但无法在另一个页面显示

为何小弟我整合ckeditor和ckfinder后,上传图片成功但无法在另一个页面显示

WBOY
WBOYOriginal
2016-06-13 11:55:54866browse

为何我整合ckeditor和ckfinder后,上传图片成功但无法在另一个页面显示
整合后,我都已经可以在textarea中插入图片了,如下图:

但是,我点击下面的“发表”按钮,却始终无法正常显示该图片,文字就可以正常显示,如下图:



编辑页面源代码:






article中的代码:
<?php <br />	header("Content-Type:text/html; charset=utf-8"); <br />	echo "<pre class="brush:php;toolbar:false">";<br />	print_r($_POST);<br />	echo "
";
?>

请各位高手指点迷津,非常感谢!
------解决方案--------------------
点击左上“源码”看一下
------解决方案--------------------
你打印之后的结果查看源码看看。
------解决方案--------------------
你没有看到双引号被转义了吗?

------解决方案--------------------
不用编辑器提交怎么样?随便输入个 aa'bb" 提交看下结果是什么。
------解决方案--------------------
按理说他是智能判断的,不知道你改了什么

$_POST = array_map('stripslashes', $_POST);
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn