
[사용방법]

-------------------------------------------------------------------------
 1. upload.php 파일 업로드경로 수정 (경로가 존재해야 하며 퍼미션은 707)
-------------------------------------------------------------------------
// --
// 첨부 이미지 저장 디렉토리 
// --

$path = '../data/geditor';

// --


-------------------------------------------------------------------------
 2. geditor.js 파일 경로 확인
-------------------------------------------------------------------------
/////////////// 사용자 설정 시작 ///////////////

// geditor.js 파일 경로
var ge_path             = g5_url + '/geditor';

// 상단 툴바 이미지 경로
var ge_icon_path        = ge_path + '/icons';

// 이모티콘 이미지 경로
var ge_emoticon_path    = ge_path + '/emoticons';

// 이모티콘 갯수
var ge_emoticon_count   = 43;


-------------------------------------------------------------------------
 3. 적용할 페이지 맨 하단에 스크립트 추가
-------------------------------------------------------------------------
<script language="JavaScript" src="<?php echo $g5[url]?>/geditor/geditor.js"></script>


-------------------------------------------------------------------------
 4. 적용할 textarea 에 geditor 옵션추가
-------------------------------------------------------------------------
<textarea name="wr_content" geditor>


--------------------------------------------------------------------
 ex) 그누보드 적용 예 (write.skin.php 파일 참고)
-------------------------------------------------------------------------

..............

<textarea id="wr_content" name="wr_content" class=tx style='width:100%; word-break:break-all;' rows=15 itemname="내용" required 
<?php if ($is_dhtml_editor) echo ' geditor '; ?>><?php echo $content?></textarea>

..............

<?php if ($is_dhtml_editor) {?>
<script language="JavaScript" src="<?php echo $g5[url]?>/geditor/geditor.js"></script>
<?php }?>

