search_player($_POST['s']); ?>
Found players ()
| UID |
PLAYER |
VILLAGES |
POP |
getProfileVillages($userIDs);
foreach($result as $p){
$varray = $database->getProfileVillages($p['id']);
$totalpop = 0;
foreach($varray as $vil){ $totalpop += $vil['pop']; }
echo '
| '.$p['id'].' |
'.$p['username'].' |
'.count($varray).' |
'.$totalpop.' |
';
}
} else {
echo '| No results |
';
}
?>