Home > Backend Development > PHP Tutorial > PHP integrated FCK function code_PHP tutorial

PHP integrated FCK function code_PHP tutorial

WBOY
Release: 2016-07-21 15:49:32
Original
770 people have browsed it

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) ;
}

www.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...
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template