子供用の靴を共有する方法をフォーラムで見たのですが、あまり包括的ではないと思います。
コードをコピーする コードは次のとおりです:
PHP ページ:
/* Editor*/
include_once "../include/fckeditor/fckeditor.php";// エディタを紹介します
$editor = new FCKeditor('content' ) ;//フォーム項目の名前
$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"] ;
追加:
ページを変更: