Thread subject: pHpFusion Nederlands (BE|NL) » Ondersteuning, Themas, Infusies, Modificaties en Installatie :: [Opgelost] Aantal Downloads weergeven in Panel?

Posted by tim on 07 March 2011, 13:34
#1

Hallo,
Zit met een probleem
ik zou graag de aantal downloads weer geven in een panel
hier is de code maar ik krijg 0 en niet de aantal download_count

iemand een oplossing of wat ik verkeerd doe
heb zelfs aantal keren de _id / _count geprobeerd soms wordt het 2 soms 1 en soms 0
maar niet de aantal downloads.

Code


openside("Last Downloads");
   $result = dbquery("SELECT * FROM ".$db_prefix."downloads WHERE ".groupaccess('download_title')." ORDER BY download_id");
   $rows = dbrows($result);
   if ($rows != 0) {
      $counter = 0; $columns = 2;
      while ($data = dbarray($result)) {
         if ($counter != 0 && ($counter % $columns == 0)) echo "";
         $num = dbcount("(download_id)", "".$db_prefix."downloads", "download_id='".$data['download_title']."'");

         echo "".$data['download_title']." ($num)";
         echo "" ;
         $counter++;
      }
      echo "";
   } else {
      echo "
\n".$locale['430']."
\n";
   }
closeside();


Tim

Edited by Jelle on 08 March 2011, 17:25

Posted by tim on 08 March 2011, 12:24
#2

@Jelle,

Is opgelost Grin
toch bedankt