Hi, I have asked this question under the help section, but may have used the wrong area. Basically I am using FCK_editor for the first time, using it to add news articles to the web pages but the "contents" does not show up? In my add_news.php page.
Date, title and brief does....can anyone help?
This is the code I have....
<?
include("fckeditor/fckeditor.php") ;
$sBasePath = $_SERVER['PHP_SELF'] ;
$sBasePath = substr( $sBasePath, 0, strpos( $sBasePath, "admin" ) ) . "admin/fckeditor/" ;
$oFCKeditor = new FCKeditor('news_content') ;
$oFCKeditor->BasePath = $sBasePath ;
$oFCKeditor->Value = $news_content ;
$oFCKeditor->Width = 600;
$oFCKeditor->Height = 300;
$oFCKeditor->ToolbarSet = 'Default';
$oFCKeditor->Config['SkinPath'] = $sBasePath . 'editor/skins/default/' ;
$oFCKeditor->Create() ;
?>