Welcome to Hosting Companies Database
Description:
This database includes lots of worldwide hosting companies with lots of their hosting plans with all details(even technical support hours included

)
This database is an awesome one which has lots of fields!!!
Here the fields list which it includes:
1) ID
2) CAT
3) COMPANY NAME
4) ADDRESS WITH ALL DETAILS
5) TELEPHONE
6) FAX
7) PLAN TYPE (example: shared plan)
8) PLAN NAME
9) PLATFORM (example: linux)
10) MONTHLY PRICE
11) ANNUAL PRICE
12) SETUP FEE
13) DISK SPACE / ADDITIONAL COST FOR EXTRA DISK SPACE (includes both)
14) BANDWITH ALLOWED
15) EXTRA BANDWITH PRICE
16) BACKUP FREQUENCY
17) ACCOUNT SETUP TIME
18) MINIMUM CONTRACT
19) MONEYBACK GUARANTEE
20) EMAIL ACCOUNTS
21) EMAIL AUTORESPONDERS
22) DATABASES SUPPORTED
23) CONNECTION SPEED
24) SERVER HARDWARE
25) SERVER SOFTWARE
26) SITES PER SERVER
27) SERVER COMPONENT LIST
28) BUSINES HOURS
29) TECHNICAL SUPPORT HOURS
As you see, there're
29 different fields.
Structure is here:
PHP Code:
CREATE TABLE `hostingplans` (
`id` bigint(20) NOT NULL auto_increment,
`cat` varchar(50) NOT NULL default '',
`companyname` varchar(255) character set utf8 collate utf8 NOT NULL default '',
`addresswithalldetails` text character set utf8 collate utf8 NOT NULL,
`telephone` text character set utf8 collate utf8,
`fax` text character set utf8 collate utf8,
`plantype` text character set utf8 collate utf8,
`planname` text character set utf8 collate utf8,
`platform` text character set utf8 collate utf8,
`monthlyprice` text character set utf8 collate utf8,
`annualprice` text character set utf8 collate utf8,
`setupfee` text character set utf8 collate utf8,
`diskspaceandadditionalprice` text character set utf8 collate utf8,
`bandwidthallowed` text character set utf8 collate utf8,
`extrabandwidthprice` text character set utf8 collate utf8,
`backupfrequency` text character set utf8 collate utf8,
`accountsetuptime` text character set utf8 collate utf8,
`minimumcontract` text character set utf8 collate utf8,
`moneybackguarantee` text character set utf8 collate utf8,
`emailaccounts` text character set utf8 collate utf8,
`emailautoresponders` text character set utf8 collate utf8,
`databasessupported` text character set utf8 collate utf8,
`connectionspeed` text character set utf8 collate utf8,
`serverhardware` text character set utf8 collate utf8,
`serversoftware` text character set utf8 collate utf8,
`sitesperserver` text character set utf8 collate utf8,
`servercomponentlist` text character set utf8 collate utf8,
`businesshours` text character set utf8 collate utf8,
`technicalsupporthours` text character set utf8 collate utf8,
PRIMARY KEY (`id`),
KEY `cat_index` (`cat`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2591 ;
Sample from the db:
PHP Code:
INSERT INTO `hostingplans` VALUES (41, 'A', 'American Webhosting', '1220 E. Greg St.\nSparks, NV 89432\nU.S.A.', '775-331-3319', '775-331-3266', 'Shared', 'Ultimate Account', 'Unix or Linux', '$16.95', '$203.40', 'No Set Up Fee', '300 MB, $1.00 per MB', '6 GB(or 600,000 Monthly Page Views)', '$0.01 per MB', 'Daily', '24 Hours', '3 month', '30 days', '15', '1', 'mySQL,', 'OC3', 'Dual P2', 'RedHat Linux', '1', 'CGI', 'M-F 8am-9pm S 8am-4pm', 'M-F 8am-9pm S 8am-4pm');
Records: 2.590
Price: 39$
Regards