Hi,
I have used FCK editor with PHP earlier. That was the old version. I use to pass the following code and every thing was done perfectly.
$sBasePath = "Includes/FCKeditor/";
$oFCKeditor = new FCKeditor('newsDesc');
$oFCKeditor->BasePath = $sBasePath ;
$oFCKeditor->Value = $description;
$oFCKeditor->Create() ;
where newsDesc is the field name. The others are standard values that I use to do with FCK editor. I am not a regular programer so I just use to change the values and it worked perfectly. However, now I want to use the new version of FCK editor but I have no clue of where to set the values. If any one of you have the required information, please do share as this will be a great help.
Thanks,
I have used FCK editor with PHP earlier. That was the old version. I use to pass the following code and every thing was done perfectly.
$sBasePath = "Includes/FCKeditor/";
$oFCKeditor = new FCKeditor('newsDesc');
$oFCKeditor->BasePath = $sBasePath ;
$oFCKeditor->Value = $description;
$oFCKeditor->Create() ;
where newsDesc is the field name. The others are standard values that I use to do with FCK editor. I am not a regular programer so I just use to change the values and it worked perfectly. However, now I want to use the new version of FCK editor but I have no clue of where to set the values. If any one of you have the required information, please do share as this will be a great help.
Thanks,
Re: FCK editor with PHP
I don't think the code is any different with the new version. What is going wrong?
Re: FCK editor with PHP