View Single Post
  #5  
Old 26th February 2015, 13:17
WhyMe WhyMe is offline
Banned
 
Join Date: Apr 2014
P2P
Posts: 160
Default
why want hes info to site look read the sql error online


PHP Code:
DROP TABLE IF EXISTS `announce`;
CREATE TABLE `announce` (
`
idINT20 UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`
urlVARCHAR255 NOT NULL ,
`
torrentINT10 UNSIGNED NOT NULL ,
`
seedersINT10 UNSIGNED NOT NULL DEFAULT '0',
`
leechersINT10 UNSIGNED NOT NULL DEFAULT '0',
`
times_completedINT10 UNSIGNED NOT NULL DEFAULT '0',
`
onlineENUM'yes''no' NOT NULL DEFAULT 'yes',
INDEX ( `torrent` )
ENGINE MYISAM 
Reply With Quote