I am working at a login script in which the username is an email address and the user can have more than 1 email address with which he can login.
I am creating an array based on a MySQL select LIKE because all the email addresses of the user are on the same column having ##
as delimiters.
Array (
[0] => test@yahoo.com
[1] => testabc@yahoo.com##test123@yahoo.com
[2] => testing@yahoo.com##abcd@yahoo.com
)
I would like to obtain this array so I can then compare the user input with the exact email address:
Array (
[0] => test@yahoo.com
[1] => testabc@yahoo.com
[2] => test123@yahoo.com
[3] => testing@yahoo.com
[4] => abcd@yahoo.com
)
Thank you!