dump the structure and the data into a file. (use the add drop table option)
Change the file so that the structure portion includes an increment key. then use an editor powerful enough to do a search and replace that will apropriately change the beginning of each INSERT so that it includes a blank field where the auto_increment field should be.
so...
when you dump, you'll have:
drop table..
CREATE TABLE mytable (
table stuff....
)
INSERT INTO mytable (fields...) VALUES('firstvalue');
use a text editor and add
an apropriate field with the autoincrement property as the first column.
Then do a replace all for INSERT INTO mytable (fields...
with INSERT INTO mytable(id fields
then do another one for lastfieldname) VALUES('
to lasfieldname) VALUES('', '
Then run the thing.
Should be easy enough if you are using phpmyadmin and a decent editor
when you finish, you'll have something that looks like:
drop table..
CREATE TABLE mytable (
int(11) ID auto_increment primary_keyblahblah
table stuff....
)
INSERT INTO mytable (ID, fields...) VALUES('', 'firstvalue');
hope that helps.