6
First, I have a newsletter system that I modified for email marketing, it’s all in PHP (obvious) and first, I add the emails manually through a part of the site add.php but there are over 3000 emails to be added and it will take a long time to do this manually.
Anyway the question is:
Would you have some way to pass an excel email list to the database in MYSQL ?
use the phpmyadmin I don’t know if it helps to specify...
In case you don’t understand you can comment that I try to explain better.
Yes it is possible, believe it! what is the excel structure? it is possible to convert to a csv?
– rray
great to know this friend, already this in csv, it gets easier?
– João Victor Gomes Moreira
Behold that to extract csv values, then just format SQL and insert.
– rray
sorry I am layman on the subject as well as "format sql" ?
– João Victor Gomes Moreira
Mount the
INSERT INTO tabela(campo) VALUES('[email protected]')
– rray
Or you can use phpmyadmin see those answers
– rray
Thank you very much guy, solved my problem completely, saved me hours and hours hahaha
– João Victor Gomes Moreira