renewenewsuseradd_1.php
693 Bytes
<?php
@include("../../inc/header.php");
/*
SoftName : EmpireBak
Author : wm_chief
Copyright: Powered by www.phome.net
*/
E_D("DROP TABLE IF EXISTS `renewenewsuseradd`;");
E_C("CREATE TABLE `renewenewsuseradd` (
`userid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`equestion` tinyint(4) NOT NULL DEFAULT '0',
`eanswer` varchar(32) NOT NULL DEFAULT '',
`openip` text NOT NULL,
`certkey` varchar(60) NOT NULL DEFAULT '',
`certtime` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`userid`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8");
E_D("replace into `renewenewsuseradd` values('1','0','','','','0');");
@include("../../inc/footer.php");
?>