<?php
include_once 'fckeditor/fckeditor.php';
//$BasePath = "fckeditor/";//编辑器路径
$BasePath = $_SERVER[PHP_SELF];
$BasePath = dirname($path).'fckeditor/';
$oFCKeditor = new FCKeditor("fck");
$oFCKeditor->BasePath = $BasePath;
$oFCKeditor->Value="hello";
$oFCKeditor->Width='800';
$oFCKeditor->Height='300';
$oFCKeditor->ToolbarSet='Basic';
//$oFCKeditor->Config['SkinPath'] = "/fckeditor/editor/skins/silver/";
$oFCKeditor->Create();
?>
用$_POST['fck']就能获取文本框里面的值。
php 之 FCKeditor2.6
最新推荐文章于 2021-03-10 05:41:30 发布