php怎么调用ckeditor

 我来答
君子忧者忧1778
2017-10-23 · TA获得超过353个赞
知道小有建树答主
回答量:1690
采纳率:30%
帮助的人:353万
展开全部
将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();

我还有在后盾网学习呢,加油(ง •̀_•́)งฅ ̳͒•ˑ̫• ̳͒ฅ♡
你停涂A
2017-10-23 · TA获得超过130个赞
知道小有建树答主
回答量:160
采纳率:87%
帮助的人:96.2万
展开全部
在ckeditor官网下载ckeditor后
解压缩,放到网站根目录下
下面演示三种调用ckeditor的方法
1.通过html,js调用ckeditor
<html>
<head>
<title>Sample 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"><p>Initial value.</p></textarea>
<script type="text/javascript">
CKEDITOR.replace( 'editor1' );
</script>
</p>
<p>
<input type="submit" />
</p>
</form>
</body>
</html>

2.使用php调用ckeditor
<p>Title:</p><input name="subject" type="text" >
<?php
include 'ckeditor/ckeditor.php';
$ckeditor = new CKEditor;
$ckeditor->editor('content');
?>
<input name="submit" type="submit" value="提交" />

3.使用textarea和js调用ckeditor
<html>
<head>
<title>Sample CKEditor Site</title>
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
<script type="text/javascript">
window.onload = function()
{
CKEDITOR.replace( 'content' ); //content是textarea的名称
};
</script>
</head>
<body>
<form method="post">
<p>
My Editor:<br />
<input type="text" name="title">
<textarea name="content"></textarea>
</p>
<p>
<input type="submit" name="sub"/>
</p>
</form>
</body>
</html>

转载请注明出处:IT技术学习网 http://www.itjsxx.com/php/php_ckeditor.html
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
司马刀剑
高粉答主

2017-10-23 · 每个回答都超有意思的
知道顶级答主
回答量:4.6万
采纳率:93%
帮助的人:7444万
展开全部
现在的ckeditor更新了 要用上传图片的功能貌似还要收费
你可以用fckeditor 这个跟ckeditor差不多,简单配置后,就可以上传图片
上传后提交表单 $_POST数组里有图片的路径 把它存到数据库里就可以了
详细的方法可以看里面的demo,很简单的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式