csj16
07-18-2008, 09:16 AM
I think I need to use something else besides a while loop with this problem I have. I'm just not sure what.
I'm trying to run a while loop so I can determine if one of the (many) email addresses inside my "table_1" match any of the email addresses inside my "table_2". And if it does then I need to delete that row from table_1.
But it won't work!!
I must be doing something wrong or maybe I shouldn't even be using a WHILE loop. Can someone help me with this. I would be so happy and grateful!! :D:D
while($row2 = mysql_fetch_array($get_names2_res)) {
while($row = mysql_fetch_array($get_names_res)) {
$friend_email = stripslashes($row['friend_email']);
$users_email = stripslashes($row2['email']);
if ($users_email == $friend_email) {
echo"Yeah we found that name ($users_email)";
}
}
}
It works but not how I want it to work. It only reads one email at a time and I need it to read all the emails at one time.
I'm trying to run a while loop so I can determine if one of the (many) email addresses inside my "table_1" match any of the email addresses inside my "table_2". And if it does then I need to delete that row from table_1.
But it won't work!!
I must be doing something wrong or maybe I shouldn't even be using a WHILE loop. Can someone help me with this. I would be so happy and grateful!! :D:D
while($row2 = mysql_fetch_array($get_names2_res)) {
while($row = mysql_fetch_array($get_names_res)) {
$friend_email = stripslashes($row['friend_email']);
$users_email = stripslashes($row2['email']);
if ($users_email == $friend_email) {
echo"Yeah we found that name ($users_email)";
}
}
}
It works but not how I want it to work. It only reads one email at a time and I need it to read all the emails at one time.