renewecms_news_1.php
3.95 KB
1
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
@include("../../inc/header.php");
/*
SoftName : EmpireBak
Author : wm_chief
Copyright: Powered by www.phome.net
*/
E_D("DROP TABLE IF EXISTS `renewecms_news`;");
E_C("CREATE TABLE `renewecms_news` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`classid` smallint(5) unsigned NOT NULL DEFAULT '0',
`ttid` smallint(5) unsigned NOT NULL DEFAULT '0',
`onclick` int(10) unsigned NOT NULL DEFAULT '0',
`plnum` mediumint(8) unsigned NOT NULL DEFAULT '0',
`totaldown` mediumint(8) unsigned NOT NULL DEFAULT '0',
`newspath` char(20) NOT NULL DEFAULT '',
`filename` char(36) NOT NULL DEFAULT '',
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`username` char(20) NOT NULL DEFAULT '',
`firsttitle` tinyint(1) NOT NULL DEFAULT '0',
`isgood` tinyint(1) NOT NULL DEFAULT '0',
`ispic` tinyint(1) NOT NULL DEFAULT '0',
`istop` tinyint(1) NOT NULL DEFAULT '0',
`isqf` tinyint(1) NOT NULL DEFAULT '0',
`ismember` tinyint(1) NOT NULL DEFAULT '0',
`isurl` tinyint(1) NOT NULL DEFAULT '0',
`truetime` int(10) unsigned NOT NULL DEFAULT '0',
`lastdotime` int(10) unsigned NOT NULL DEFAULT '0',
`havehtml` tinyint(1) NOT NULL DEFAULT '0',
`groupid` smallint(5) unsigned NOT NULL DEFAULT '0',
`userfen` smallint(5) unsigned NOT NULL DEFAULT '0',
`titlefont` char(14) NOT NULL DEFAULT '',
`titleurl` char(200) NOT NULL DEFAULT '',
`stb` tinyint(3) unsigned NOT NULL DEFAULT '1',
`fstb` tinyint(3) unsigned NOT NULL DEFAULT '1',
`restb` tinyint(3) unsigned NOT NULL DEFAULT '1',
`keyboard` char(80) NOT NULL DEFAULT '',
`title` char(100) NOT NULL DEFAULT '',
`newstime` int(10) unsigned NOT NULL DEFAULT '0',
`titlepic` char(120) NOT NULL DEFAULT '',
`ftitle` char(120) NOT NULL DEFAULT '',
`smalltext` char(255) NOT NULL DEFAULT '',
`diggtop` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `classid` (`classid`),
KEY `newstime` (`newstime`),
KEY `ttid` (`ttid`),
KEY `firsttitle` (`firsttitle`),
KEY `isgood` (`isgood`),
KEY `ispic` (`ispic`),
KEY `useridis` (`userid`,`ismember`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8");
E_D("replace into `renewecms_news` values('1','1','0','1','0','0','','1','1','admin','0','0','0','0','0','0','0','1492355071','1492359411','1','0','0','','/about/1.html','1','1','1','','RENEW 健身工作室','1492354735','','RENEW GRAVITY FINTESS BAY','核心引力科技有限公司所成立的 RENEW GRAVITY FINTESS BAY 是引進來自美國的引力體系以 GRAVITY TRAINING SYSTEM的訓練體系來協助需要達到塑身、減重、核心訓練、康復等綜','0');");
E_D("replace into `renewecms_news` values('2','1','0','1','0','0','','2','1','admin','0','0','0','0','0','0','0','1492356890','1492356890','1','0','0','','/about/2.html','1','1','1','','公司简介','1492356842','','',' 公司简介','0');");
E_D("replace into `renewecms_news` values('3','2','0','0','0','0','2017-04-17','3','1','admin','0','0','1','0','0','0','0','1492361987','1492370806','1','0','0','','/course/2017-04-17/3.html','1','1','1','','引力康復','1492361827','/d/file/course/2017-04-17/1e376f88cac87fe2cc23e6e291c85abb.png','GRAVITY POST REHAB','引力康復訓練模式為私人教練、物理治療師提供了一套內容完整、綜合性强的康復後期解決方案,重點放在了改善膝關節、腰椎和肩頸關節的活動度,通過持續有效的訓練管道最終達到完','0');");
E_D("replace into `renewecms_news` values('4','9','0','0','0','0','','4','1','admin','0','0','1','0','0','0','0','1492389319','1492389319','1','0','0','','/contact/4.html','1','1','1','','聯繫我們','1492389127','/d/file/contact/2017-04-17/685351af6d0b832a4d83845e07528ff3.png','HOW TO FIND US','電話:02-97727887地址:台北市光復南路一段36﹣10號10樓(復興微風百貨對面)路線1:板南線復興南路站捷運出口5號出來往復興南路一段方向走(北)大約500公尺路線2:文湖線與松山線捷運南京','0');");
@include("../../inc/footer.php");
?>