View Single Post
ישן 03-10-06, 22:38   # 3
4ior
חבר וותיק
 
4ior's Avatar
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
הודעות: 1,451

4ior לא מחובר  

PHP קוד:
<?php

        $oFCKeditor 
= new FCKeditor('body') ;//בשביל לקבל את זה תעשה: $_post['body'];
        
$oFCKeditor->BasePath '';
        
$oFCKeditor->Value 'Default text in editor';
        
$oFCKeditor->Width '400';
        
$oFCKeditor->Height '400';
        
$oFCKeditor->Create();
?>
  Reply With Quote