risolto , a chi servisse il codice completo per una pagina di esempio è:
Codice PHP:
<?php
include("FCKeditor/fckeditor.php") ;
?>
<html>
<head>
<title>FCKeditor - Sample</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<form action="savedata.php" method="post">
<?php
$oFCKeditor = new FCKeditor('contenuto') ;//nome per recuperare dati con $_POST
$oFCKeditor->BasePath = './FCKeditor/';
$oFCKeditor->Value = 'default text';
$oFCKeditor->Create() ;
?>
<input type="submit" value="Submit">
</form>
</body>
</html>