php在页面中调用fckeditor编辑器的方法_PHP
程序员文章站
2024-02-01 19:10:34
...
FCKEditor
刚才在论坛上看到一个童鞋分享的方法,感觉不是很全面,现在分享下我的!
复制代码 代码如下:
PHP页面:
/* 编辑器 */
include_once "../include/fckeditor/fckeditor.php";//把编辑器引进来
$editor = new FCKeditor('content');//表单项的名称
$editor->BasePath = "/fckeditor/";//编辑器所在目录
$editor->ToolbarSet = "Normal";//工具栏的名字,可以根据自己的需求加载其他的
$editor->Width = "95%";//宽度度
$editor->Height = "250";//高度
$editor->Value = $content;//初始值
$fckeditor = $editor->CreateHtml();//在要显示编缉器的地方输出变量$fckeditor的值就行了
$tpl->assign('fckeditor', $fckeditor);//模板赋值
HTML模板页面(我用的是smarty)
{%$fckeditor%}
一般php页面调用
content 是我定义的变量名
$content =$_POST["content"];
添加:
修改页面:
复制代码 代码如下:
PHP页面:
/* 编辑器 */
include_once "../include/fckeditor/fckeditor.php";//把编辑器引进来
$editor = new FCKeditor('content');//表单项的名称
$editor->BasePath = "/fckeditor/";//编辑器所在目录
$editor->ToolbarSet = "Normal";//工具栏的名字,可以根据自己的需求加载其他的
$editor->Width = "95%";//宽度度
$editor->Height = "250";//高度
$editor->Value = $content;//初始值
$fckeditor = $editor->CreateHtml();//在要显示编缉器的地方输出变量$fckeditor的值就行了
$tpl->assign('fckeditor', $fckeditor);//模板赋值
HTML模板页面(我用的是smarty)
{%$fckeditor%}
一般php页面调用
content 是我定义的变量名
$content =$_POST["content"];
添加:
修改页面:
下一篇: 一个合格的程序员并不在乎别人的看法
推荐阅读
-
php在页面中调用fckeditor编辑器的方法_PHP
-
php中运用http调用的GET和POST方法示例,getpost
-
在PHP中实现重载构造函数的方法
-
在WINDOWS中设置计划任务执行PHP文件的方法
-
在html文件中也可以执行php语句的方法_PHP
-
在PHP中设置、使用、删除Cookie的解决方法_PHP
-
PHP演示静态static(在静态方法中不能调用普通方法)
-
php面向对象中static静态属性和静态方法的调用,面向对象static
-
在php中使用swoole扩展时,server端的回调函数中如何使用thinkphp框架的方法?
-
php-mysql 问题笔记一——在命令行中可以执行的sql语句,无法从php页面页面执行!