I have a SQL database with the following: `id` int(10) NOT NULL default '0', `symbol` varchar(255) NOT NULL default '', `scientific` varchar(255) NOT NULL default '', `common` varchar(255) NOT NULL default '', `family` varchar(255) NOT NULL default '', INSERT INTO `plants` VALUES (1, 'ABELI', 'Abelia R. Br.', 'abelia', 'Caprifoliaceae'); And so on. It is a DB of plants and the various names. I need a script to pull them out and organize them by scientific name, common name and family. And a admin panel to insert new ones. It should be a fairly simple project. Let me know if your interested. Thanks.