Hi,
Im a newbie to FCKEditor, ive managed to install it and get it to work to some extent....
what i want to do and cant seem to get it to do is display data from a MySQL DB inside the editor....
for example, i want to be able to do this.
instead of having this:
<?php $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = '/fckeditor/' ; $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; $oFCKeditor->Create() ; ?>
Re: Dynamic Content, Please Help.
Re: Dynamic Content, Please Help.
alfonsoml - you didnt answer any of my questions.
Can what i want to do be done and how?
What am i doing wrong.
Re: Dynamic Content, Please Help.
You need to learn basic PHP programming if you need to ask that kind of questions,
echo (http://php.net/echo) does output the data to the client, and so it doesn't send the data to the editor.
Re: Dynamic Content, Please Help.
YOU DONT ANSWER MY QUESTION,
rather than just leaving smart remarks actually be helpful.
Re: Dynamic Content, Please Help.