renewenewsmoreport_1.php
969 Bytes
<?php
@include("../../inc/header.php");
/*
SoftName : EmpireBak
Author : wm_chief
Copyright: Powered by www.phome.net
*/
E_D("DROP TABLE IF EXISTS `renewenewsmoreport`;");
E_C("CREATE TABLE `renewenewsmoreport` (
`pid` int(11) NOT NULL AUTO_INCREMENT,
`pname` char(60) NOT NULL DEFAULT '',
`purl` char(255) NOT NULL DEFAULT '',
`ppath` char(255) NOT NULL DEFAULT '',
`postpass` char(120) NOT NULL DEFAULT '',
`postfile` char(255) NOT NULL DEFAULT '',
`tempgid` smallint(5) unsigned NOT NULL DEFAULT '0',
`mustdt` tinyint(1) NOT NULL DEFAULT '0',
`isclose` tinyint(1) NOT NULL DEFAULT '0',
`closeadd` tinyint(1) NOT NULL DEFAULT '0',
`headersign` char(255) NOT NULL DEFAULT '',
PRIMARY KEY (`pid`),
KEY `isclose` (`isclose`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8");
E_D("replace into `renewenewsmoreport` values('1','主訪問端','','','','','0','0','0','0','');");
@include("../../inc/footer.php");
?>