|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
学习数据库了,MYSQL可算是PHP的黄金搭档了,不过,虽然话是这么说,你也可能恨不得把MYSQL给生吞活剥了,因为这一行一列的东东简直让自己头晕目眩。 方才在服装论坛上看到一个童鞋分享的办法,感到不是很周全,如今分享下我的!
复制代码 代码以下:
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"];
添加:
<INPUT name="content" id="content" type=hidden>
<IFRAME id="content" src="fckeditor/editor/fckeditor.html?InstanceName=content&Toolbar=Normal" frameBorder=0 width=100% scrolling=no height=300 ></IFRAME>
修正页面:
<INPUT name="content" id="content" type=hidden value="<?php echo $rows['content'];?>">
<IFRAME id="content" src="/fckeditor/editor/fckeditor.html?InstanceName=content&Toolbar=Normal" frameBorder=0 width=100% scrolling=no height=300 >
</IFRAME>
就是管理员可以编辑,删除,回复 等功能,。加入管理员功能要加入登陆系统,慢慢你会想在线添加管理员,慢慢你会让自己的作品更漂亮些,慢慢1个完整的留言板就会出来了, |
|