1. 程式人生 > >FCKEditor線上編輯器的使用

FCKEditor線上編輯器的使用

<?php //引用FCKeditor.php這個檔案,基本的類和資料結構都在這裡 include ("fckeditor/fckeditor.php"); //建立FCKeditor物件的例項。myFCKeditor即提交後,接收資料頁面 _POST['myFCKeditor']使用 $FCKeditor = new FCKeditor("content"); //FCKeditor所在的位置,這裡它的位置就是'FCKEditor‘ 資料夾 $FCKeditor -> BasePath='./fckeditor/'; //工具按鈕設定,工具按鈕設定FCKeditor提供了Basic(基礎工具)和Default(全部工具)供我們選擇,當然我們也可是以在FCKEditor的類檔案中設定我們想要使用的工具組合 $FCKeditor -> ToolbarSet="Default"; //設定它的寬度 $FCKeditor -> Width='500px'; //設定它的高度 $FCKeditor -> Height='300px'; //生成 $FCKeditor -> Create(); ?> 在PHP檔案中加入以上程式碼後我們就可以使用FCKEditor了,在要接收FCKEditor的值的時候,就可以用POST方式獲取了。