Hello,
At first, sorry for my english, it's not my native language and I learn it by myself.
I have an integration problem with FCKE. I using phpBB2 template engine (template.php) on my website. So my PHP Code and HTML code is not on the same file. HTML code is in seperate file and the file is interpreted by the template engine.
So if i put:
<? $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() ; ?>
On my HTML file, that's not working. I have this result on my webpage:
BasePath = '../fckeditor/' ; $oFCKeditor->Value = ' This is some sample text. You are using FCKeditor. ' ; $oFCKeditor->Create() ; ?>
Anyone understand what I try to explain and can help me?
Thanks!