mirror of
https://github.com/hequan2017/seal.git
synced 2026-02-07 12:23:53 +08:00
20 lines
517 B
PHP
20 lines
517 B
PHP
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
|
|
<script src="../../ueditor.parse.js" type="text/javascript"></script>
|
|
<script>
|
|
uParse('.content',{
|
|
'rootPath': '../'
|
|
})
|
|
|
|
</script>
|
|
<?php
|
|
//获取数据
|
|
error_reporting(E_ERROR|E_WARNING);
|
|
$content = htmlspecialchars(stripslashes($_POST['myEditor']));
|
|
|
|
|
|
//存入数据库或者其他操作
|
|
|
|
//显示
|
|
echo "第1个编辑器的值";
|
|
echo "<div class='content'>".htmlspecialchars_decode($content)."</div>";
|