ich habe ein php der mich Mitgliedsname Geschlecht seigt und ich möchte dass erweitern der mich auch Länder und für jeder Länder wie viel user registirert z.B. Deutschland (4) Usa (6) der mich so seigt wie kann ich dem code erweitern ein bissen tip bitte
PHP-Code:
<?php
include_once 'include/config.inc.php';
include_once 'include/options.inc.php';
include_once 'include/security.inc.php';
include_once 'include/functions.inc.php';
include_once 'templates/'.C_TEMP.'/config.php';
?>
<Table CellSpacing="<?=C_BORDER?>" CellPadding="0" width="<?=C_WIDTH?>"
bgcolor="<?=C_TBCOLOR?>"><Tr>
<Td width="<?=C_WIDTHL?>" bgcolor="<?=COLOR1?>" valign="top">
<Table Border=0 CellSpacing="<?=C_IBORDER?>" CellPadding="<?=C_CELLP?>"
width="<?=C_WIDTHL?>" class=mes>
<Tr>
<Td bgcolor="<?=C_TBCOLOR?>"></Td>
</Tr>
<Tr>
<Td bgcolor="<?=C_TBCOLOR?>"></Td>
</Tr>
<Tr align="<?=C_ALIGN?>" bgcolor="<?=COLOR1?>">
<Td> <table width="100%" class=tr>
<tr class=mes bgcolor="<?=COLORH?>" align=center>
<td>
<?=$w[118]?>
</td>
<td>
<?=$w[132]?>
</td>
<td>
<?=$w[120]?>
</td>
</tr>
<?$tmp=mysql_query("SELECT id, fname, gender, birthday FROM ".C_MYSQL_MEMBERS."
WHERE status >= '7' order by regdate DESC limit ".C_LASTREG);
$color='';
while($i=mysql_fetch_array($tmp))
{
$color = ($color == COLOR4) ? COLOR3 : COLOR4;
$name = (trim($i['fname']) == '') ? $i['id'] : $i['fname'];
$age=abs(mysql2data($i['birthday'],1));
echo "<tr class=desc bgcolor=\"".$color."\" align=center>
<td><a href=\"view.php?l=".$l."&id=".$i['id']."\" class=desc>".$name."</a></td>
<td>".$wg[$i['gender']]."</td></tr>";}
?>
</table></Td>
</Tr>
</Table></Td></Tr></Table>
Kommentar