- <script type="text/javascript" src="FCKeditor/fckeditor.js"></script>
- <script type="text/javascript">
- window.onload = function()
- {
- var sBasePath = "FCKeditor/" ;
- var oFCKeditor = new FCKeditor( "content" ) ;
- oFCKeditor.BasePath = sBasePath ;
- oFCKeditor.Width = "100%" ;
- oFCKeditor.Height = "400" ;
- oFCKeditor.ReplaceTextarea() ;
- }
- </script>
- <table width="778" border="0" cellpadding="0" cellspacing="6" class="border">
- <tr>
- <td valign="top" width="100%" class="listcontent" align="center">
- <b><?Php echo $message; ?></b>
- <table width="100%" border="0" cellpadding="6" cellspacing="0">
- <tr>
- <td class="listTitle">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><strong>编辑新闻</strong></td><td align=right> </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td valign="top" class="list">
- <form action="admin_editnews.php?do=1" method="post" >
- 新闻标题:<input type="text" name="title" size="50" value="<?php echo $title; ?>" /> <br/>
- <textarea name="content" ><?php echo $content; ?></textarea><br /><br />
- <input type="hidden" name="id" value="<?php echo $id; ?>" />
- <input type="button" value="返 回" onclick="history.back();" /> <input type="submit" value="更 新" />
- </form>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
php里如何使用fckeditor
最新推荐文章于 2021-04-15 17:53:05 发布
这是一个关于编辑新闻内容的页面,提供了新闻标题和内容的填写区域,并且集成了富文本编辑器FCKeditor来帮助用户更好地编辑新闻正文。
192

被折叠的 条评论
为什么被折叠?



