本文目录一览:
如何在php中调用ckeditor 并读取出数据库中的数据
你换个名字不就完了,多简单。实在不行就替换函数,str_replace什么的
php下怎么使用多个ckeditor 在线编辑器
CKeditor是一款在线编辑器,可用于博客、新闻发布等的文本编辑框,利用它可以很方便地实现对文章的排版。它是一款开源工具,可以在我们的网站中使用它增强编辑功能,显得专业和装B。原来它叫FCKeditor,后来改名叫CKeiditor,感谢开源软件的开发者,他们是最帅的!
一、下载
官网下载:
解压之后直接放在网站根目录里就可以使用了。
在_samples目录下,可以找到很多做好的样例,这些可以用来学习编辑器的用法。
二、用js的方式调用
官方演示样例:
复制代码
html
head
titleSample CKEditor Site/title
script type="text/javascript" src="ckeditor/ckeditor.js"/script
/head
body
form method="post"
p
My Editor:br /
textarea id="editor1" name="editor1"pInitial value./p/textarea
script type="text/javascript"
CKEDITOR.replace( 'editor1' );
/script
/p
p
input type="submit" /
/p
/form
/body
/html
复制代码
我是把ckeditor目录和test.html放在同个目录下,注意第四行原来是src="/ckeditor/ckeditor.js",要把前面的斜杠去掉,改为src="ckeditor/ckeditor.js"才能正确指向文件ckeditor.js。这时候不启用wamp服务器也能正确显示ckeditor。
三、用PHP的方法引入
复制代码
pTitle:/pinput name="subject" type="text"
?php
include 'ckeditor/ckeditor.php'; //include ckeditor.php
$ckeditor = new CKEditor;
$ckeditor-editor('content');
?
input name="submit" type="submit" value="提交" /
复制代码
这样也能引入ckeditor,这时候editor的位置就在中间那段php代码的地方,两种方法都可以,不过我还不明白两种方法有什么区别。
还可以在textarea标签中嵌入ckeditor:
复制代码
?php
if(!empty($_POST["sub"]))
{
echo $_POST["title"];
echo "br";
echo $_POST["content"];
}
?
html
head
titleSample CKEditor Site/title
/head
body
form method="post"
p
My Editor:br /
input type="text" name="title"
textarea name="content"
?php
include 'ckeditor/ckeditor.php'; //include ckeditor.php
$ckeditor = new CKEditor;
$ckeditor-editor('content');
?
/textarea
/p
p
input type="submit" name="sub"/
/p
/form
/body
/html
php怎么调用ckeditor
将FCKeditor放在网站根目录
在PHP文件里面,包含/FCKeditor/ckeditor/" target="_blank"fckeditor.php文件
在网页中需要放置该编辑器的地方插入下面代码即可调用:
代码如下 复制代码
1 ?php
//包含fckeditor类
include("fckeditor/fckeditor.php") ;
//创建一个FCKeditor,表单名称为 jzleditor
$oFCKeditor = new FCKeditor("jzleditor");
//设置编辑器路径
$oFCKeditor-BasePath = "fckeditor/";
$oFCKeditor-ToolbarSet = "Default";//工具按钮
$oFCKeditor-Value =$cont; //;设置初始内容
$oFCKeditor-Width="100%"; //设置它的宽度
$oFCKeditor-Height="550px"; //设置它的高度
$oFCKeditor-Create();
我还有在后盾网学习呢,加油(ง •̀_•́)งฅ ̳͒•ˑ̫• ̳͒ฅ♡