There is a row within the tables of the DB located in phpmyadmin that has all email addy's I need these extracted in CSV format with no more then 2,000 per file There is a total of 13,100 emails PM me with how much you would like to charge to do this.
Hello, I am a PHP developer.I go through your message and ready to work on this now.$50 is charge for this.
You can do this yourself. Go to the table where the emails are in. Then click on the SQL tab and write the following query SELECT `FIELDNAME` FROM `TABLE` Code (markup): (replace FIELDNAME with the field where the email addresses are in like email or so and TABLE with the table name) You should see then only the email addresses. Then right at the bottom of the page there is a section called "Query results operations". Click on the export option. On the next screen select one of the csv options depending on what you want. Finally scroll to the bottom and click the Go button. Save the file and you are done.
Lets imagine your database is called database, and your table is called table. For example sake, your emails row will be called emails. SELECT 'emails' FROM 'database.table' LIMIT 2000 Code (markup): Then export as CSV as posted above Then, follow this pattern to get the rest SELECT 'emails' FROM 'database.table' LIMIT 2000, 2000 Code (markup): SELECT 'emails' FROM 'database.table' LIMIT 4000, 2000 Code (markup): SELECT 'emails' FROM 'database.table' LIMIT 6000, 2000 Code (markup): etc.