CravenBW Posted November 6, 2006 Share Posted November 6, 2006 I'm trying to get the number of rows based on two tables... it's not quite working right. Can anyone see anything wrong with the code below or give me another idea by any chance? The date stuff still needs some work but it works for right now. My main issue right now is getting active working which checks for usernames that are both signed up and validated then is supposed to take those usernames and see if they've logged in more then 1 time but that part isn't working. :-([code]<?phpprint '<table cellspacing="5px" style="text-align: center;"><tr style="text-align: left;"><td><b>DATE</b></td><td><b>SIGNUP</b></td><td><b>VALIDATED</b></td><td><b>ACTIVE</b></td></tr>';$link = mysql_connect ("localhost", "username", "password") or die ('I cannot connect to the database because: ' . mysql_error());mysql_select_db ("database", $link);$date = date("mdY",strtotime("-10 day"));$today = date("mdY:");while($date < $today) { $sign = mysql_query("SELECT * FROM users WHERE signdate LIKE '$date%'"); $validate = mysql_query("SELECT * FROM users WHERE validate != '' AND signdate LIKE '$date%'"); $active = mysql_query("SELECT username FROM users WHERE validate LIKE '$today%' AND signdate LIKE '$today%'"); print '<tr><td><b>'.substr($date,0,2).'/'.substr($date,2,2).'/'.substr($date,4).'</b></td>'; print '<td>'.mysql_num_rows($sign).'</td>'; print '<td>'.mysql_num_rows($validate).'</td>'; while($row = mysql_fetch_array($active)) { $numrows = mysql_query("SELECT * FROM ftp WHERE username='$row[username]' AND ftp_logincount >= '2'"); print '<td>'.mysql_num_rows($numrows).'</td></tr>'; } if ($date < "".date("m",strtotime("-1 month"))."31".date("Y")."") { $date = $date + 10000; } elseif ($date > "".date("m")."00".date("Y")."") { $date = $date + 10000; } elseif ($date = "".date("m",strtotime("-1 month"))."31".date("Y")."") { $date = date("m"); $date .= "01"; $date .= date("Y"); } }print '</table>';?>[/code] Link to comment https://forums.phpfreaks.com/topic/26283-mysql-num-rows-based-on-two-tables/ Share on other sites More sharing options...
CravenBW Posted November 6, 2006 Author Share Posted November 6, 2006 *bump* anyone have any idea? Link to comment https://forums.phpfreaks.com/topic/26283-mysql-num-rows-based-on-two-tables/#findComment-120570 Share on other sites More sharing options...
CravenBW Posted November 6, 2006 Author Share Posted November 6, 2006 Please ignore. I found a solution while researching things. I decided to ditch the php way and got it completed via a mysql query. Link to comment https://forums.phpfreaks.com/topic/26283-mysql-num-rows-based-on-two-tables/#findComment-120611 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.