I can't get value form FCK editor using multi fileds form. There are many fields in my form and they are posted to php file. When I use the sampleposteddata.php from "_samples" I get all of variables in one(array). I'd like to get the text from FCKeditor in one variable for example:
$get_FCK_text=$_POST["this_is_FCK_text"];
Thanks for help
$get_FCK_text=$_POST["this_is_FCK_text"];
Thanks for help

RE: Getting value from FCK editor for PHP
RE: Getting value from FCK editor for PHP
RE: Getting value from FCK editor for PHP
<?=$sForm?><?=$postedValue?>RE: Getting value from FCK editor for PHP
RE: Getting value from FCK editor for PHP
<?php //Main $sBasePath = 'http://blah.com/editor/'; $member_id = 'new_editor_name'; $oFCKeditor = new FCKeditor($member_id) ; $oFCKeditor->BasePath = $sBasePath ; $oFCKeditor->ToolbarSet = "Basic"; $oFCKeditor->Value = $text;//set this to whatever $oFCKeditor->Create() ; ?><input type="hidden" value="<? echo $member_id;?>" name="id_edit"><p>updated article id: <? echo $id1; ?></p> (this will show the name you used to create the editor)<p>updated to: <br><? echo $_POST[$id1];?></p> (this will show the contents of the editor.RE: Getting value from FCK editor for PHP