剛剛在論壇上看到一個童鞋分享的方法,感覺不是很全面,現在分享下我的!
複製程式碼 程式碼如下:
PHP頁面:
/* 編輯器*/
include_once "../include/fckeditor/fckeditor.php";//把編輯器引進來;//表單項目的名稱
$editor->BasePath = "/fckeditor/";//編輯器所在目錄
$editor->ToolbarSet = "Normal";//工具列的名字,可以依照自己的需求載入其他的
$editor->Width = "95%";//寬度度
$editor->Height = "250";//高度
$editor->Value = $content;//初始值
$fckeditor = $editor->CreateHtml();//在要顯示編緝器的地方輸出變數$fckeditor的值就行了
$tpl->assign('fckeditor', $fckeditor);//模板賦值
HTML模板頁面(我用的是smarty)
{%$fckeditor%}
一般php頁面調用
content 是我定義的變量名
$content =$_POST["content"];
添加: