방금 포럼에서 어린이 신발을 공유하는 방법을 보았는데 그다지 포괄적이지 않은 것 같습니다.
코드 복사 코드는 다음과 같습니다.
PHP 페이지:
/* Editor*/
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->Value = $content;//초기값
$fckeditor = $editor->CreateHtml();//변수 $ 출력 편집기를 표시하려는 fckeditor 값만
$tpl->ass('fckeditor', $fckeditor);//템플릿 할당
HTML 템플릿 페이지(저는 smarty를 사용합니다)
{%$fckeditor% }
일반 PHP 페이지 호출
content는 내가 정의한 변수 이름입니다.
$content =$_POST["content"]
추가:
< INPUT name="content " id="content" type=hidden>
페이지 수정: