My query keeps giving a
Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given
error at these 2 rows:
$num_pgs = mysql_num_rows($camp_pgs);
$num_cid = mysql_num_rows($camp_id);
In this statement:
$userID=PageDB::getInstance()->get_user_id_by_name($_SESSION['user']);
$result_pg=mysql_query("SELECT * FROM pages where campaign=" . $campaignID);
$result_cid=mysql_query("SELECT * FROM campaign where id=" . $campaignID);
$camp_pgs = mysql_query($result_pg);
$camp_id = mysql_query($result_cid);
$num_pgs = mysql_num_rows($camp_pgs);
$num_cid = mysql_num_rows($camp_id);
$i=0;
if ($num_pgs > 0){
while ($row = mysqli_fetch_array($camp_pgs)):
$style = "";
if($i%2==0)
What I am trying to acchieve here is match 2 columns from 2 seperate tables where if table.column 1 = table.column 2 then list the results in a dynamic table. The tables queried are "pages" and "campaigns" where I am trying to match column "campaignid" with column "id" respectively.
Thanks for your help!
$camp_id = mysql_query($result_cid);but before that you have$result_cid = mysql_query("SELECT * FROM campaign where id=" . $campaignID);. Can you see your mistake? – N.B. May 18 '12 at 8:10