io uso FCKeditor per le news, posto lo script, magari ti puo' servire:
Codice PHP:
<?php
include("fckeditor.php") ;
?>
<html>
<head>
<title>Putting Data in the Database</title>
</head>
<body background="../../img/bgr.gif">
<?php
if(isset($submit)):
require ("../../connessione.php");
$date = date("Y-m-d");
$sql = "INSERT INTO news
VALUES(NULL,'$heading','$body',
'$date','$auth','$auth_email')";
$sql = //etc...or die(mysql_error());
print("<h2>La news è stata inserita correttamente</h2>\n");
endif;
?>
<font face="Arial" style="font-size:12px" color="#000000">
[b]Inserisci nuova news[/b]
</font>
<form action="data_in.php" method="post">
Nome:
<input type="text" name="auth">
E-mail:
<input type="text" name="auth_email">
Titolo della news
<input type="text" name="heading">
<?php
$oFCKeditor = new FCKeditor('body') ;
$oFCKeditor->BasePath = '/news/editor/';
$oFCKeditor->Value = 'Scrivi qui il testo della news';
$oFCKeditor->Create() ;
?>
<input type="submit" name="submit" value="Inserisci News!">
</form>
</body>
</html>
guarda i campi della tabella e creati la tua.
qui: $oFCKeditor = new FCKeditor('body') ; ci scrivo il testo.
facci sapere, e' un po' che non lo uso ma presto mi servira'.
CiaoN.B. mi sembra comunque che ci sono degli esempi quando lo scarichi.