Jump to content

[SOLVED] Can you tell me what's wrong?


timmah1

Recommended Posts

I'm trying to count how many members are in my database according to what the user selected.

 

Here is my code

while($row = mysql_fetch_array( $rs )){	
$member_count = mysql_fetch_assoc(mysql_query("SELECT count(*) as num FROM group WHERE name = '$row[group]'"));

 

I'm getting the error

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/public_html/god/pages/page.viewgroups.inc.php on line 37

 

Is there a problem that I'm just not seeinig?

 

Thanks in advance

 

 

Link to comment
https://forums.phpfreaks.com/topic/81822-solved-can-you-tell-me-whats-wrong/
Share on other sites

sorry

 



$sql = "SELECT * FROM groups WHERE id = '$group'";
$result = mysql_query($sql);

//$member_count = mysql_fetch_assoc(mysql_query("SELECT count(*) as num FROM group WHERE group = '$group'"));

//Create a PS_Pagination object
$pager = new PS_Pagination($conn,$sql,8,3);

//The paginate() function returns a mysql result set 
$rs = $pager->paginate();
while($row = mysql_fetch_array($s)){	
//while($row = mysql_fetch_array($rs)) {
$member_count = mysql_fetch_assoc(mysql_query("SELECT count(*) as num FROM group WHERE name = '$row[group]'"));

$sql = "SELECT * FROM groups WHERE id = '$group'";
$result = mysql_query($sql);

$numberall = mysql_numrows($result);
if ($numberall==0) {
    echo "<strong>No groups with that ID.</strong>"; 
}

//$member_count = mysql_fetch_assoc(mysql_query("SELECT count(*) as num FROM group WHERE group = '$group'"));

//Create a PS_Pagination object
$pager = new PS_Pagination($conn,$sql,8,3);

//The paginate() function returns a mysql result set 
$rs = $pager->paginate();
while($row = mysql_fetch_array($result)){	
//while($row = mysql_fetch_array($rs)) {
$member_count = mysql_fetch_assoc(mysql_query("SELECT count(*) as num FROM group WHERE name = '$row[group]'"));

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.