I have download FCKeditor_2.0rc2 yestoday.It seems very good,but I don't know how to make it works.
I just know there are some examples in "_samples",but if I want to use the editor in other dir,how can I do it?
can anybody help me?Thank you very much!
I just know there are some examples in "_samples",but if I want to use the editor in other dir,how can I do it?
can anybody help me?Thank you very much!
RE: Is anyone can help me?
Thank you very much!
RE: Is anyone can help me?
2 things you need to do:
- include the fckeditor.php file in your script(s)
- replace the textarea code with some PHP code, e.g.:
$oFCKeditor = new FCKeditor('description');
$oFCKeditor->Value = 'txtarea text/value';
$oFCKeditor->Create();