hi,
i have a small CMS and want to try the FCKeditor for andminitration. i used the SPAW editor for now but experinced some problems with this editor.
now i try to integrate the FCKeditor and need some help with this. here is my code:
<form action="index.php?content=admin&action=<?php echo $action; ?>&catid=<?php echo $_REQUEST['catid'];?>&belongsto=<?php echo $_REQUEST['belongsto'];?>&baseid=<?php echo $_REQUEST['baseid'];?>&prisort=<?php echo $_REQUEST['prisort'];?>" method="POST">
RE: store to mysql
oFCKeditor = new FCKeditor('EditorDefault') ;
You have to write:
oFCKeditor = new FCKeditor('subject') ;
RE: store to mysql
ok! thanks, this worked.
but i have the next problem:
if i write:
oFCKeditor.Value = '<?php echo $HTTP_POST_VARS['subject']; ?>' ;
RE: store to mysql