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