Jump to content

[help] WHILE loop or not?


csj

Recommended Posts

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 ;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.

Link to comment
https://forums.phpfreaks.com/topic/115385-help-while-loop-or-not/
Share on other sites

Best solution is to pull the contents of both databases into an array and then compare them.

 

You're just over thinking this one.

 

Basically (not tested, general idea):

<?php
while($row = mysql_fetch_assoc($get_names_res))
{
    $user_email[] = $row['email'];
}

unset($row);

while($row = mysql_fetch_assoc($get_names2_res))
{
    $friend_email[] = $row['friend_email'];
}

$total_user = count($user_email)

for($i = 0; $i < $total_user; ++$i)
{
   if(in_array($friend_email[$i], $user_email)
   {
      echo 'Found one!';
   }
   else
   {
      echo 'Didn't find one!';
   }

}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.