Page that shows fckeditor
<?php
$oFCKeditor = new FCKeditor('comment') ;
$oFCKeditor->BasePath = '/FCKeditor/';
$oFCKeditor->Value = '';
$oFCKeditor->Create() ;
?>case "postcomment": $commenttopost= htmlspecialchars( stripslashes( $_POST['comment'] ) ) ;
$commenttopost = $_POST['comment'];
$commenttopost = stripslashes($_POST['comment']);

Re: Problem retrieving input data
http://www.saulmade.nl/FCKeditor/FCKPlugins.php
Re: Problem retrieving input data
Re: Problem retrieving input data
Re: Problem retrieving input data
<?php echo "POST:"; var_dump($_POST); echo "GET:"; var_dump($_GET); ?>enter some text in FCKeditor and check whether any of there arrays is not empty.
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Problem retrieving input data
POST:array(6) { ["fusername"]=> string(6) "Shadow" ["blogcategory"]=> string(6) "Poetry" ["subject"]=> string(14) "It is your day" ["memberposted"]=> string(6) "Shadow" ["$instanceName"]=> string(46) " Default text in editor " ["send"]=> string(3) "Add" } GET:array(0) { }