我正在使用小盘,希望对编辑中的任何用户书写进行预览。
Now I dont know how to get the html content of tinyMce in php.I got the content and echo them on the other page but they are not html content(with html tags) they are simple plain text. Here is what I ve done so far.
My Html:
<form action="../Profile/Profile_View.php" method="post" id="form">
<div id="Editor"><textarea cols="123" rows="22" id="PostEditor" name="editorValue"></textarea></div>
<div id="SubmitButtons">
<a href="javascript:void(0)" onClick="SetPreview()" target="_blank" id="preview"><img src="../Images/PreviewButton.png" width="200" height="50" /></a>
<a href="#"><img src="../Images/SaveButton.png" width="200" height="50"/></a>
</div>
</form>
《原则和规则》审查职能提交文字。
My PHP (in Profile_View.php):
if(isset($_POST[ editorValue ]))
{
$previewValue=strip_tags(stripslashes($_POST[ editorValue ]));
echo $previewValue;
}
else
{
$previewValue="";
}
如果情况得到执行,则不会产生html的简单明了案文。
Answer:
摘自CMCE文件。 我没有使用造成这一问题的定额备用金变量。