SilverNodashi
Expert Member
Hi,
I hope someone can help me. I need to extract certain details ("Full Name and Surname", "Email", "Contact Number) from a MySQL DB but can't figure out how to do this. The application in question, "Grunion Contact Form" for Wordpress saves the data in the DB, in an array, as follows:
Each entry is in it's own database row, inside "longtext" field.
How can I easily extract "Full Name and Surname", "Email", "Contact Number" data from a few thousands rows like this, and re-save in a simple table or CSV file to import into something like phplist
I hope someone can help me. I need to extract certain details ("Full Name and Surname", "Email", "Contact Number) from a MySQL DB but can't figure out how to do this. The application in question, "Grunion Contact Form" for Wordpress saves the data in the DB, in an array, as follows:
Code:
Array
(
[Full Name and Surname:] => Sharon Somerset
[Email] => [email protected]
[Contact Number:] => 08xxxxxx
[Alternative Number] => 011xxxxxx
[Please list convenient time to be contacted] =>
[Medical Aid Quote] => Yes
[Insurance Quote] =>
[Policy Update] =>
[Friend's Name and Surname:] =>
[Friend's Contact Number:] =>
[How did you find us?] => Google
)
Each entry is in it's own database row, inside "longtext" field.
How can I easily extract "Full Name and Surname", "Email", "Contact Number" data from a few thousands rows like this, and re-save in a simple table or CSV file to import into something like phplist