Salve,
riesco a visualizzare il contenuto della tabella categoria ma
non riesco ad aggiungere una nuova categoria al database utilizzando
FCKeditor.
Questo è il codice:

<?php
switch ('$submit')
{
//nessun bottone selezionato
case 0:
?>
<p><INPUT type="radio" name="cat" value="" checked>&nbsp;Nuova categoria principale</p>
<?php
display_children_admin(0,0);
break;

// inserisci categoria
case 1:
if ($modifica==1)
{
$sQuery="select * from categorie where id=\"".$cat."\"";
$res = mysql_query($sQuery) or die("Couldn't execute query(Seleziona notizia)");
$aRow = mysql_fetch_array($res);
($aRow[homepage]>0)? $checked_homepage='checked' :$checked_homepage='';
}
?>
<p><label>Titolo breve</label><input type="text" name="titolobreve" value="<?php echo $aRow['titolobreve']; ?>"></p>
<p>Descrizione
<?php
include("membri/franco/editorfck/fckeditor.php") ;
$sBasePath = "membri/franco/editorfck/";
$oFCKeditor = new FCKeditor('FCKeditorTest') ;
$oFCKeditor-> BasePath = $sBasePath ;
$oFCKeditor-> Value = $aRow["descrizione"] ;
$oFCKeditor-> Width = '100%';
$oFCKeditor-> Height = '200';
$oFCKeditor-> Create() ;
?>

Qualcuno mi può aiutare?
Grazie.