新浪在线可视化编辑器PHP版_PHP教程
时间:2021-07-01 10:21:17
帮助过:29人阅读
调用
/**
* 新浪博客编辑器PHP版封装类调用方法
*
*/
header(\'Content-Type:text/html;Charset=utf-8;\');
include_once(\'sinaEditor.class.php\');
extract($_POST);
extract($_GET);
unset($_POST,$_GET);
$act==\'subok\' && die("提交的内容是:
".htmlspecialchars($gently_editor));
$editor=new sinaEditor(\'gently_editor\');
$editor->Value=\'
这个是一个测试!
我的博客:
$editor->BasePath=\'.\';
$editor->Height=500;
$editor->Width=700;
$editor->AutoSave=false;//是否自动保存!!
?>
效果图
下载地址:点击下载
http://www.bkjia.com/PHPjc/631915.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/631915.htmlTechArticle调用 ?php /** * 新浪博客编辑器PHP版封装类调用方法 * */ header(\'Content-Type:text/html;Charset=utf-8;\'); include_once(\'sinaEditor.class.php\'); extract($_POST);...