zoukankan      html  css  js  c++  java
  • fckediter 在php中的运用

    在 index.php 文件中,调用它的代码,把下面的代码加在需要编辑器的地方:

    <?php 
    $fck = $_POST [ "FCKeditor" ] ;
    if ( $fck != "" ) 

    echo htmlspecialchars ( $fck ) ;

    ?> 

    <html>
    <head>
    <title>fck测试<title>
     
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    </head>
    <body>
    <form action="index.php" method="POST">
          
    <?php
            //引用FCKeditor.php这个文件,基本的类和数据结构都在这里
            include_once("FCKeditor/fckeditor.php");
            //创建FCKeditor对象的实例。myFCKeditor即提交后,接收数据页面 $_POST['myFCKeditor']使用
            $FCKeditor=new FCKeditor('myFCKeditor');
            //FCKeditor所在的位置,这里它的位置就是'FCKeditor' 文件夹
            $FCKeditor->BasePath='./FCKeditor/';
            //工具按钮设置
            $FCkeditor->ToolbarSet='Default';
            //设置它的宽度
            $FCKeditor->Width='100%';
            //设置它的高度
            $FCKeditor->Height='300px';
            //生成
            $FCkeditor->Create();
          
    ?>
          
    </Form>

    <br>
    <input type="submit" value="提交">
    </form>
    </body>
    </html>

    fckediter demo 下载

  • 相关阅读:
    failed to push some refs to 'git@github.com:laniu/liuna.git'报错原因
    ECMAScript和JavaScript的关系
    js面试总结
    第16章 脚本化css
    代理模式
    SQL
    VS
    Js/Jquery获取iframe中的元素 在Iframe中获取父窗体的元素方法
    SQL
    C#
  • 原文地址:https://www.cnblogs.com/redfox241/p/1549944.html
Copyright © 2011-2022 走看看