提取Fckeditor時,採用如下
PHP用$_POST['p_info']得到FCKeditor的值
補充:
1 .此處basepath 的路徑一定要和上面include的路徑一樣.否則會找不到檔案)
另外,對於這個輸入內容的變數,如果要把它存入資料庫教程,它的變數名為你建
立對象的名字.例如上面就是 "p_info"
2. 在FCKeditor/_samples/裡面有個php教程調用的例子.如simples01.php
和sampleposteddata.php這兩個.後面那個檔案是輸出變數名的php
程式,通過這個程式可以得到文本輸入框內容的變數名.
3. 配置 FCKeditor的toolbar功能按鈕可以很容易地進行定製,你可以依據你
的需要在FCKeditor的設定檔FCKeditor/fck_config.js中進行定製
一個功能按鈕對應一個唯一的名稱。
在fck_config.js中預設情況下已經設定好三種toolbar樣式:Default(包
含全部功能),Accessibility和Basic。
讓我們先來看看toolbar樣式的定製格式:
config.ToolbarSets["ToolBarSetName"] = [ // Toolbar名
['Item 1','Item 2','-','Item 3','Item n'], // Toolbar第一行
['Item 4','-','Item 5','Item 6','Item n'] // Toolbar第二行
] ;
這裡'-'的作用是建立一個分割條。
執行個體
<?
$BasePath = "../include/FCKeditor/" ;
include( $BasePath . "fckeditor.php" );
$fck = new FCKeditor ( 'p_info' ) ;//建立對像
$fck -> BasePath = $BasePath ;//Fckeditor所在的位置
$fck -> ToolbarSet = 'News' ;//News為自訂的Fckeditor工具列名稱
$fck -> Width = '700' ;//長度
$fck -> Height = '350' ;//高度
$fck -> Config [ 'AutoDetectLanguage' ] = false ;//語言自動檢測
$fck -> Config [ 'DefaultLanguage' ]= 'zh-cn' ;//語言
$content = $fck -> CreateHtml ();//建立Fckeditor指令檔
$smarty -> assign ( 'content' , $content );
$smarty -> display ( "fck.tpl" );
?>
在smarty的檔案中需要顯示的地方
<tr align="left">
<td colspan="2" valign="top" bgcolor="#F5F5F5" class="font12en">
<{$content}>
</td>
</tr>
預設的Default包含了FCKeditor的全部功能,個人感覺有些功能用不上,完全載入還會影響顯示速度,所以我簡化了一下,只載入了一些常用的功能:
1、開啟FCKeditor/fck_config.js檔案
使用時只需把$oFCKeditor->ToolbarSet = 'Default'
改為$oFCKeditor->ToolbarSet = 'www' 即可
最後.我們把FCKeditor目錄下所有以底線“_”開頭的目錄都刪掉以節省空間的,如_test._samples