PDA

View Full Version : FCKeditor --> Anyone Experienced?



Zaid_W1red
March 21st, 2006, 10:40 AM
Hey Guys,
Im using this awesome open source app: http://fckeditor.net.

Im trying to populate it with some text from a database, but when I do the text appears outside of editor!

Here's my PHP:


<?php
$oFCKeditor = new FCKeditor('FCKeditor') ;
$oFCKeditor->BasePath = 'FCKeditor/';
$oFCKeditor->Value = latestNews();
$oFCKeditor->Create() ;
?>


Latest news is just a fucntions from earlier in my code that retirievs the database entry.

Any clues??