BasePath = 'fckeditor/';
//set the EnterMode to "br" (overwrites the default configuration from fckconfig.js)
$oFCKeditor->Config['EnterMode'] = 'br';
$oFCKeditor->Value = "";
if(isset($_REQUEST['edit_id'])){
$oFCKeditor->Value = $sqlData['description'];
}
$oFCKeditor->Create() ;
?>