<? php $dd = mysql_query("SELECT id FROM users WHERE block='1'"); while ($da = mysql_fetch_array($dd)) { $numuserV = mysql_fetch_array(mysql_query("SELECT COUNT(*) FROM tbl_b...
Hello great minds. I've two tables in my database, I want to count the number of users that exist in table A and is existing in table B. Please how can I achieve this?? I've ...