I need to insert email address into a table, before that i need to make sure that this email address is not already in the table. to check this i used =
if(in_array($em ail, $emailrows)) = This works however it only reads the value of email in the First row only not the remaining rows in the table.
please provide the code to check all the rows in the table for the Email field.
if(in_array($em ail, $emailrows)) = This works however it only reads the value of email in the First row only not the remaining rows in the table.
please provide the code to check all the rows in the table for the Email field.
Comment