Here is my DB:
CREATE TABLE `tablenames` (
`tablename_id` int(5) unsigned NOT NULL auto_increment,
`tablename` varchar(25) NOT NULL default '',
PRIMARY KEY (`tablename_id`)
) TYPE=MyISAM AUTO_INCREMENT=3 ;
When I get the DB filled, it should print like this:
A101, A102, A103
With the...