您的位置:首页 > 编程语言 > PHP开发

PHP在线编辑器fckeditor应用

2011-04-10 20:56 375 查看
网上下载:FCKeditor_2.6.5

add_news.php

--------------------

<?phpinclude_once 'fckeditor/fckeditor.php';$sBasePath = $_SERVER['PHP_SELF'];$sBasePath = dirname($sBasePath) . "/fckeditor/"; //fckeditor.php所在的根目录$ed = new FCKeditor('con') ;$ed->BasePath = $sBasePath ;$ed->Config['SkinPath'] = $sBasePath . '/editor/skins/office2003/'; //皮肤路径?>

<html><body>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<form action="" method="post"> <input type="text" name="title" value="" /> <?php $ed->Create(); ?> <br><input name="btn" type="submit" value="添加新闻"></form>

标题:<?php echo $_POST['title'] ?>

内容:<?php htmlspecialchars(stripslashes($_POST['con'])) ?>

</body></html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: