This list is a good place to start, but mobile devices are being added all the time. If you have a web application that needs to show list of mobile devices this list can help you. Note that the table contains both vendor and model, so it is best to show data in two drop downs: one for vendors and one for models. The drop down of the vendors is used as a filter to the drop down of the models.
This is the structure of the devices table (mySQL style):
The list of the inserts if very long. You can download it by using this link.CREATE TABLE `device` (`vendor` varchar(100) NOT NULL,`model` varchar(100) NOT NULL,PRIMARY KEY (`vendor`,`model`)) ENGINE=InnoDB
Thankyou so much man!
ReplyDeleteI really needed that!
Thank you so much
ReplyDelete