테스트는 안해봤지만... 여기를 참고하시면 될 것입니다. ^^;
URL : http://www.xpressengine.com/tip/20938470
아래 내용은 제가 그냥 적어 놓은 내용이니 안보셔도 됩니다. 개인적인 용도 입니다. -0-;
// 에디터를 받음
$option->primary_key_name = 'no';
$option->content_key_name = 'memo';
$option->allow_fileupload = true;
$option->enable_autosave = true;
$option->enable_default_component = true;
$option->enable_component = true;
$option->resizable = true;
$option->height = 300;
$option->skin = "default";
$editor = $oEditorModel->getEditor($row[no], $option);
?>
<input type=hidden name="no" value='<?=$row[no]?>'>
<input type=hidden name="memo" value="<?=htmlspecialchars($row[memo])?>">
<script>
function save_form() {
uni_form.memo.value = GetUserDocument(uni_form);
return true;
}
</script>
<table cellpadding="0" cellspacing="0" border="0" class="MemberTable">
<tr>
<th width="112" height="30" align="center">내용</th>
<td><?=$editor?></td>
</tr>