Copy code The code is as follows:
//Define a function for calling FCKeditor
function call_fck($input_name, $input_value,$w='780',$h='580')
{
include_once 'fckeditor/fckeditor.php';
$fcked = new FCKeditor($input_name);
$ fcked->BasePath = 'fckeditor/';
$fcked->ToolbarSet = 'Simple' ; //Toolbar settings
$fcked->InstanceName = $input_name ;
$fcked-> ;Width = $w;
$fcked->Height = $h;
$fcked->Value = $input_value;
$fck_area = $fcked->CreateHtml();
$this->smarty->assign('fck_area',$fck_area);
unset($fck_area) ;
unset($fcked) ;
}
http://www.bkjia.com/PHPjc/319538.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/319538.htmlTechArticleCopy the code The code is as follows: //Define a function for calling FCKeditor function call_fck($input_name,$input_value,$ w='780',$h='580') { include_once 'fckeditor/fckeditor.php'; $fcked...
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn