獎系統for Discuz! 7.0.0
//----------插件信息----------
Designed by 童虎
The first edited by ntf
The second edited by Rockoy
The third edited by Eric03
//--------------------------------
演示:http://hkhouse.某某.com/luck.php
//----------插件安裝/刪除開始----------
插件安裝
1.升級數據庫複製內容到剪貼板代碼:
CREATE TABLE `cdb_luck` (
`uid` mediumint(8) unsigned NOT NULL,
`count` tinyint(1) unsigned NOT NULL default '0',
`credits` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`uid`),
KEY `credits` (`credits`)
) TYPE=MyISAM;2.下載主程式並上傳至論壇目錄內(已把所有文件分配好)
***********************
插件刪除
1.刪除所有程式文件
2.升級數據庫複製內容到剪貼板代碼:
DROP TABLE cdb_luck;//----------插件安裝/刪除完畢----------