The forum operates in read-only mode. Please head to StackOverflow for support.
include( 'modules/fckeditor/fckeditor.php' ); $oFCKeditor = new FCKeditor( 'content' ); $oFCKeditor->BasePath = 'modules/fckeditor/'; $oFCKeditor->Value = ''; $oFCKeditor->Create();
$rte = $oFCKeditor->Create();
// Include FCKeditor class include( 'modules/fckeditor/fckeditor.php' ); // Start output buffering ob_start(); // Setup FCKeditor $oFCKeditor = new FCKeditor( 'content' ); $oFCKeditor->BasePath = 'modules/fckeditor/'; $oFCKeditor->Value = ''; $oFCKeditor->Create(); // Get contents $rte = ob_get_contents(); // Finish output buffering ob_end_clean();
include( 'modules/fckeditor/fckeditor.php' ); $oFCKeditor = new FCKeditor( 'content' ); $oFCKeditor->BasePath = 'modules/fckeditor/'; $oFCKeditor->Value = ''; $rte = $oFCKeditor->CreateHtml();
Re: PHP Output
Re: PHP Output