About_类与对象02
FCKeditor文本编辑程序(共享软件)为用户提供在线的文档编辑服务,其具有与微软office软件一样的功能,与之不同的是FCKeditor不需要用户安装任何形式的客户端,FCKeditor程序非常精简但功能强大,因此而受到广大应用者的青睐。在博客日益兴盛的web2.0时代FCKeditor已经开始走向普通人的视线。
FCKeditor特性:
- 完成工具栏定制
- 皮肤支持
- Plugins 支持
- 拼写检查程序
- 多语言支持以及自动用户语言侦查。
- 轻量级和快速
- 自动浏览器侦查和定制
- 支持多种编程语言
- 支持开发者安装和定做特定程序
- 对网友它是简单和容易使用!
- 完成工具栏定制
- 皮肤支持
- Plugins 支持
- 拼写检查程序
- 多语言支持以及自动用户语言侦查。
- 轻量级和快速
- 自动浏览器侦查和定制
- 支持多种编程语言
- 支持开发者安装和定做特定程序
- 对网友它是简单和容易使用!
同时,FCKeditor支持以下编程语言环境:
- ASP.Net
- ASP
- ColdFusion
- PHP
- Java
- Active-FoxPro
- Lasso
- Perl
- Python
更多:http://blog.csdn.net/raren/article/details/3748160
1 <html> 2 <head> 3 <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/> 4 </head> 5 <body> 6 <form action="getValue.php" method="post"> 7 8 标题: <input type="text" name="title" id="title"/> <br/> 9 <?php 10 include("fckeditor/fckeditor.php") ;//找到文件路径 11 $oBasePath = $_SERVER['PHP_SELF']; 12 //var_dump($oBasePath);//打印$_SERVER['PHP_SELF']:string '/teacher/class20521/addTopic.php' (length=32) 13 $oBasePath = dirname($oBasePath)."/fckeditor/";//dirname获取文件前缀 14 // 15 $oFCKeditor = new FCKeditor('FCKeditor1') ; 16 $oFCKeditor->BasePath = $oBasePath ; 17 $oFCKeditor->Height = "230px";//设置编辑器高度 18 // $oFCKeditor->ToolbarSet = "Basic";//隐藏工具条 19 $oFCKeditor->Create() ;//调用方法 20 ?> 21 22 <input type="submit" value="提交"/> 23 </form> 24 </body> 25 </html>