フォーラムで子供用の靴を共有する方法を見つけましたが、あまり包括的ではないと思いました。今度は私の方法を共有します。
コードをコピー コードは次のとおりです:
PHP ページ:
/* エディタ*/
include_once "../include/fckeditor/fckeditor.php";// エディタを紹介します
$editor = new FCKeditor('content '); //フォーム項目の名前
$editor->BasePath = "/fckeditor/";//エディターが配置されているディレクトリ
$editor->ToolbarSet = "Normal";//ツールバーの名前、必要に応じて他のものをロードできます
$editor->Width = "95%";//Width
$editor->Height = "250";//Height
$ editor->gt;Value = $content;//初期値
$fckeditor = $editor->CreateHtml();//エディタを表示したい変数$fckeditorの値を出力するだけ
$ tpl->assign('fckeditor', $fckeditor);//テンプレートの割り当て
HTML テンプレート ページ (smarty を使用)
{%$fckeditor%}
全般php ページは、私が定義した変数名である
content を呼び出します。
$content =$_POST["content"];
Add:
;
ページの変更:
>