Je ne suis pas trop.
Ca s'installe très facilement.
<?php
include 'fckeditor.php';
$post_essai = (isset($_POST['essai'])) ? $_POST['essai'] : '';
?>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<?php
$oFCKeditor = new FCKeditor('essai') ;
$oFCKeditor->BasePath = '';
$oFCKeditor->Value = $post_essai;
$oFCKeditor->Width = '550' ;
$oFCKeditor->Height = '350' ;
$oFCKeditor->Create() ;
?>
<input type="submit">
</form>
<?php
echo $post_essai;
?>
Si tu montrais ton code pour voir ou ca en est ?