Hi, Leutz, ich hab nen Problem, und zwar weiß ich nicht wie ich zu den Zahlen auch den Namen des Landes ausgeben kann :
Weiß jemand wie ich das machen ??
PHP-Code:
$i = 1;
eval ("\$otherstats .= \"".gettemplate("stats_table_bl")."\";");
$badenw = $db_zugriff->query_first("SELECT COUNT(*) AS anzahl FROM bb1_user_table where country ='1' ");
$bayern = $db_zugriff->query_first("SELECT COUNT(*) AS anzahl FROM bb1_user_table where country ='2' ");
$berlin = $db_zugriff->query_first("SELECT COUNT(*) AS anzahl FROM bb1_user_table where country ='3' ");
$brandenburg = $db_zugriff->query_first("SELECT COUNT(*) AS anzahl FROM bb1_user_table where country ='4' ");
$bremen = $db_zugriff->query_first("SELECT COUNT(*) AS anzahl FROM bb1_user_table where country ='5' ");
$hamburg = $db_zugriff->query_first("SELECT COUNT(*) AS anzahl FROM bb1_user_table where country ='6' ");
$hessen = $db_zugriff->query_first("SELECT COUNT(*) AS anzahl FROM bb1_user_table where country ='7' ");
$mecklenburg = $db_zugriff->query_first("SELECT COUNT(*) AS anzahl FROM bb1_user_table where country ='8' ");
$niedersachsen = $db_zugriff->query_first("SELECT COUNT(*) AS anzahl FROM bb1_user_table where country ='9' ");
$nrw = $db_zugriff->query_first("SELECT COUNT(*) AS anzahl FROM bb1_user_table where country ='10' ");
$rheinland = $db_zugriff->query_first("SELECT COUNT(*) AS anzahl FROM bb1_user_table where country ='11' ");
$saarland = $db_zugriff->query_first("SELECT COUNT(*) AS anzahl FROM bb1_user_table where country ='12' ");
$sachsen = $db_zugriff->query_first("SELECT COUNT(*) AS anzahl FROM bb1_user_table where country ='13' ");
$sachsenanhalt = $db_zugriff->query_first("SELECT COUNT(*) AS anzahl FROM bb1_user_table where country ='14' ");
$schleswig = $db_zugriff->query_first("SELECT COUNT(*) AS anzahl FROM bb1_user_table where country ='15' ");
$thueringen = $db_zugriff->query_first("SELECT COUNT(*) AS anzahl FROM bb1_user_table where country ='16' ");
$bl = array($badenw,$bayern,$berlin,$brandenburg,$bremen,$hamburg,$hessen,$mecklenburg,$niedersachsen,$nrw,$rheinland,$saarland,$sachsen,$sachsenanhalt,$schleswig,$thueringen);
arsort($bl);
foreach($bl as $bland)
{
$grafik = "<img src=\"images/vote_middle" . $i . ".gif\" width=\"".$bland[anzahl] . "%\" height=\"9\" border=0>";
$otherstats .= "<tr><td bgcolor=$stdcolor1 width=\"5%\" align=center><font size=1>".$i."
</td><td bgcolor=$stdcolor2 width=\"30%\"><font size=1>".$bland[anzahl]."</td>
<td bgcolor=$stdcolor1><table width=99%><tr><td><font size=1>$grafik<br>[".$bland[anzahl]."]</td></tr></table></td></tr>";
$i++;
}
Kommentar