好用的線上編輯 FCKEditor
下載位置 http://www.fckeditor.net/download/default.html 下載FCKeditor 2.2
對PHP的安裝方法 http://wiki.fckeditor.net/Developer%27s_Guide/Integration/PHP
對PHP的安裝方法 Step 1 假設FCK安裝在 /FCKeditor/ 此web server目錄下,首先先進行模組載入動作: <? php include("FCKeditor/fckeditor.php") ; ?>
對PHP的安裝方法 Step 2 使用下列程式碼產生編輯區塊: <? $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = '/FCKeditor/'; $oFCKeditor->Value = 'Default text in editor'; $oFCKeditor->Create() ; ?> FCKeditor1是表單傳送資料的名稱(name)
對PHP的安裝方法 接收輸入值 $sValue = stripslashes( $_POST['FCKeditor1'] ) ;