Home  >  Article  >  Backend Development  >  francisco lachowski PHP integrated FCK function code

francisco lachowski PHP integrated FCK function code

WBOY
WBOYOriginal
2016-07-29 08:38:54982browse

Copy the code The code is as follows:


//Define a function to call 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) ;
}

The above introduces the function code of francisco lachowski PHP integrating FCK, including the content of francisco lachowski. I hope it will be helpful to friends who are interested in PHP tutorials.

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