Hey Guys,
Im using this awesome open source app: [SIZE=-1][COLOR=#008000]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??
[/COLOR][/SIZE]