The following query displays 0 e-mails. Why? Tbl con_inf holds 51 records w/ 51 usernames. Tbl scr_149 holds 37 records with 37 equivalent usernames of which 14 show date_done=0.
<?php $connection=mysql_connect("localhost","wagner","xxx") or die ("No connection!"); $db=mysql_select_db("sbwresearch",$connection) or die ("No database!"); $qry_1="select con_inf.e_mail from con_inf, scr_149 where scr_149.date_done=\"0\" AND con_inf.username=scr_149.username"; $result_1=mysql_query($qry_1,$connection) or die ("No query # 1!"); while ($row_1=mysql_fetch_array($result_1, MYSQL_ASSOC)) { $e_mail=$row_1["e_mail"]; echo "$e_mail\n"; }; mysql_free_result($result_1); mysql_close($connection); exit; ?> Thanks! Anthony F. Rodriguez ([EMAIL PROTECTED]) --------------------------------------------------------------------- Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php