Jump to content

Add count to each result


adzie

Recommended Posts

 

Hello all,

 

I'm struggling adding a count result to this script.  I want each result to be an id so I can place x amountof images in one position and the remaining in another position.  Each user might have different awards so just using the award_id is no good as there will be empty space so I need the actual result to display a id number.

 


$res = mysql_query("SELECT award, image FROM awards WHERE active = '1'");


$codes = array();
while ($row = mysql_fetch_assoc($res)){
   $codes[$row['award']] = $row['image'];
}


$userid = '1';


$res = mysql_query("SELECT * FROM user_awards WHERE user_id = '$userid'");


$row = mysql_fetch_assoc($res);
foreach ($codes as $award => $image){
   if ($row[$award] == 1){
      echo "<img src=../$image><br/>";
   }
}

Link to comment
https://forums.phpfreaks.com/topic/231964-add-count-to-each-result/
Share on other sites

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.