fckeditor/fckconfig.js2. 이미지 업로드 관련
- fckeditor/editor/dialog/fck_image.html - fckeditor/editor/dialog/fck_image/fck_image.js - fckeditor/editor/filemanager/upload/php/*
이 파일만 수정하면 사용하는데 지장이 없는거 같다.
사용방법은
Value = $content; # witdth, height $oFCKeditor->Width = 580; $oFCKeditor->Height = 400; ?>위와 같은 설정파일을 만든후에 editor를 사용할 페이지에 include 시킨다.
html 파일에서는
$oFCKeditor->Create();
editor를 새로 생성한다. 위치는 보통 글쓰는 곳에 다가 하면 editor가 보인다.
자바스크립트에서는
var oEditor = FCKeditorAPI.GetInstance('FCKeditor1') ; document.formname.content.value = oEditor.GetXHTML(true).replace(/\n/g,'');
값을 받아서 처리하는 페이지에서는
$content = stripslashes($_POST["content"]);
로 받아서 처리하면된다.