View Single Post
  #1  
Old 1st August 2008, 23:10
Nilsons Nilsons is offline
Senior Member
 
Join Date: Dec 2007
Latvia
Posts: 40
Default Uploader application
Insert into database:
Code:
CREATE TABLE `uploadapp` (
`id` int(10) unsigned NOT NULL auto_increment,
`userid` int(10) NOT NULL default '0',
`applied` datetime NOT NULL default '0000-00-00 00:00:00',
`speed` varchar(20) NOT NULL default '',
`offer` longtext NOT NULL,
`reason` longtext NOT NULL,
`sites` ENUM('yes', 'no') NOT NULL default 'no',
`sitenames` varchar(150) NOT NULL default '',
`scene` ENUM('yes', 'no') NOT NULL default 'no',
`creating` ENUM('yes', 'no') NOT NULL default 'no',
`seeding` ENUM('yes', 'no') NOT NULL default 'no',
`connectable` ENUM('yes', 'no', 'pending') NOT NULL default 'pending',
`status` ENUM('accepted', 'rejected', 'pending') NOT NULL default 'pending',
`moderator` varchar(40) NOT NULL default '',
`comment` varchar(200) NOT NULL default '',
PRIMARY KEY (`id`),
UNIQUE KEY `users` (`userid`)
) TYPE=MyISAM AUTO_INCREMENT=1;

Into uploadapps.php edit class number to your'e uploader class number...
Attached Files
File Type: zip uploadapp.zip (1.8 KB, 320 views)
File Type: zip uploadapps.zip (2.6 KB, 258 views)
Reply With Quote
The Following 5 Users Say Thank You to Nilsons For This Useful Post:
acikaUZIVO (19th September 2008), blkmaster (2nd September 2009), komyomy (22nd September 2009), nek (4th June 2010), Rroy (14th November 2008)