You need to get your info into the table structure format...
You could create, or export this table in sql fmt and append your new entries and it would look something like this:
Code:
INSERT INTO `subscribers` VALUES (353, NULL, '[email protected]', 'HTML', 'bm9MZ0', '2007-02-06');
INSERT INTO `subscribers` VALUES (354, NULL, '[email protected]', 'HTML', '1', '2007-02-08');
INSERT INTO `subscribers` VALUES (355, NULL, '[email protected]', 'HTML', 'L1FreU', '2007-02-09');
INSERT INTO `subscribers` VALUES (356, NULL, '???????????##################', 'TEXT', 'YVp2dz', '2007-02-13');
Where each is comma separated and after appending the additional records you run/import this table
Or a csv/excell file more on the line of:
Code:
353,NULL,[email protected],HTML,bm9MZ0,2/6/2007
354,NULL,[email protected],HTML,1,2/8/2007
355,NULL,[email protected],HTML,L1FreU,2/9/2007
356,NULL,??????????##################,TEXT,YVp2dz,2/13/2007