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
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]'"));

Link to comment
Share on other sites

$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]'"));

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.