基于FCKeditor信息發布DEMO
http://www.aygfsteel.com/vjame/archive/2008/09/05/227257.html

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

Mysql數據庫表設計:
/*Column Information For - test.fck*/
-------------------------------------
Field Type Collation Null Key Default Extra Privileges Comment
------- ----------- --------------- ------ ------ ------- ------ ------------------------------- -------
name varchar(50) utf8_general_ci YES (NULL) select,insert,update,references
content text utf8_general_ci YES (NULL) select,insert,update,references
author varchar(20) utf8_general_ci YES (NULL) select,insert,update,references
/*Index Information For - test.fck*/
------------------------------------
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
------ ---------- -------- ------------ ----------- --------- ----------- -------- ------ ------ ---------- -------
/*DDL Information For - test.fck*/
----------------------------------
Table Create Table
------ --------------------------------------
fck CREATE TABLE `fck` (
`name` varchar(50) default NULL,
`content` text,
`author` varchar(20) default NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8
源代碼下載:http://www.aygfsteel.com/Files/vjame/FCKeditor-2.3.rar 直接導入到eclipse部署,然后服務器中運行
posted on 2008-09-10 09:52 lanjh 閱讀(405) 評論(0) 編輯 收藏 所屬分類: Java Web