程式CODE
2013年9月30日 星期一
FCKeditor2.6.6在php
我覺得FCKeditor還是比CKeditor或tinymce好用
光可以直接上傳圖片就贏了,不用再裝東裝西搞不定
一、開啟上傳功能
# vim fckeditor/editor/filemanager/connectors/php/config.php
改為true
$Config['Enabled'] = true ;
改上傳路徑,該路徑要設777
$Config['UserFilesPath'] = '/UploadFCK/' ;
二、php檔(在FCKeditor目錄外)引入FCKeditor
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = './fckeditor/' ;
$oFCKeditor->Value = '這裡是預設輸入的內容' ;
$oFCKeditor->Create() ;
三、處理資料,$postedValue即是輸入內容
if ( isset( $_POST ) )
$postArray = &$_POST ; // 4.1.0 or later, use $_POST
else
$postArray = &$HTTP_POST_VARS ; // prior to 4.1.0, use HTTP_POST_VARS
foreach ( $postArray as $sForm => $value )
{
if ( get_magic_quotes_gpc() )
$postedValue = htmlspecialchars( stripslashes( $value ) ) ;
else
$postedValue = htmlspecialchars( $value ) ;
echo $postedValue;
};
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言