Tuesday, September 11, 2012

Add fck editor in php

include "fckeditor/fckeditor.php"; //Top of the page


where you need the edior

$FCKeditor = new FCKeditor('FCKeditor1');
$FCKeditor->BasePath = 'fckeditor/';
$FCKeditor->Value = $content;
$FCKeditor->Height = '400px';
$FCKeditor->Create();
?>

No comments:

Post a Comment