Log in

View Full Version : script to generate mailing list System


p@nDa
09-12-2011, 11:30 AM
hi all , i need a script to generate mailing list with extra fields .

i need it in this order :

mail , username , birth_date , gender , location
mail2 , username2 , birth_date2 , gender2 , location2
mail3 , username3 , birth_date3 , gender3 , location3

i need it in a csv file.

Thank u in advance to all helpers !

p@nDa
09-14-2011, 10:21 AM
no way to obtain this help ? i tried some script for older vb versions , but don't work

kh99
09-15-2011, 09:53 PM
Do you have something like phpMyAdmin to do database stuff? You could do this:

SELECT email, username, birthday, gender, field2 AS location
FROM user LEFT JOIN userfield USING ( userid )


and then export the result as a CSV. Problem is the above won't work as is because there's no gender column in either table, so if you have a gender column then you can change "gender" to whatever column you want.