I have a number of names & email addresses being entered in one field in a form. I want to create a separate record for each set. Is there a way in SQL to do this or does this need to happen on PHP?
e.g. "Jxxx Jxxxx" <jxxx@yahoo.com>, "Nyyy Jyyyy" <yyy@yyy.com>, "Nzzz Jzzz" <zzz@zzz.org>, "Wwww Awww" <www@www.com>
into a table like:
_____________________
id |name | email
_____________________
1 |Jxxx Jxxxx |<jxxx@yahoo.com>
_____________________
2 |Nyyy Jyyyy|<yyy@yyy.com>
Nick