php怎么调用ckeditor
3个回答
展开全部
将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();
我还有在后盾网学习呢,加油(ง •̀_•́)งฅ ̳͒•ˑ̫• ̳͒ฅ♡
在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();
我还有在后盾网学习呢,加油(ง •̀_•́)งฅ ̳͒•ˑ̫• ̳͒ฅ♡
展开全部
在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
解压缩,放到网站根目录下
下面演示三种调用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
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
现在的ckeditor更新了 要用上传图片的功能貌似还要收费
你可以用fckeditor 这个跟ckeditor差不多,简单配置后,就可以上传图片
上传后提交表单 $_POST数组里有图片的路径 把它存到数据库里就可以了
详细的方法可以看里面的demo,很简单的
你可以用fckeditor 这个跟ckeditor差不多,简单配置后,就可以上传图片
上传后提交表单 $_POST数组里有图片的路径 把它存到数据库里就可以了
详细的方法可以看里面的demo,很简单的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询