hi,
I have embed fckeditor on form, all other fields are agetting using $_post , but did not get fckeditor value.
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '../fckeditor/';
$oFCKeditor->Value = "";
$oFCKeditor->Width = '600' ;
$oFCKeditor->Height = '400' ;
//$editor_create=$oFCKeditor->Create();
$tpl->setVariable('FCKEDITOR',$oFCKeditor->Create());
if (isset($_POST['create'])) {
foreach($_POST as $p)
{
echo $p;
echo '<br>';
}
it is just displaying these values by using last foreach code
Array
(
[catname] => category
[create] => Create
)
please help me about this issue.
thanks
I have embed fckeditor on form, all other fields are agetting using $_post , but did not get fckeditor value.
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '../fckeditor/';
$oFCKeditor->Value = "";
$oFCKeditor->Width = '600' ;
$oFCKeditor->Height = '400' ;
//$editor_create=$oFCKeditor->Create();
$tpl->setVariable('FCKEDITOR',$oFCKeditor->Create());
if (isset($_POST['create'])) {
foreach($_POST as $p)
{
echo $p;
echo '<br>';
}
it is just displaying these values by using last foreach code
Array
(
[catname] => category
[create] => Create
)
please help me about this issue.
thanks
Re: does not getting fckeditor posted value