ranks
This commit is contained in:
parent
307b2e0013
commit
514a659021
|
@ -51,28 +51,29 @@ if(isset($_GET['arena'])){
|
||||||
|
|
||||||
$podium=ELO_get_podium($currentArena);
|
$podium=ELO_get_podium($currentArena);
|
||||||
$count=0;
|
$count=0;
|
||||||
|
echo '<ul class="podium">';
|
||||||
foreach($podium as $sc){
|
foreach($podium as $sc){
|
||||||
$count++;
|
$count++;
|
||||||
switch ($count){
|
switch $count{
|
||||||
case 1:
|
case 1:
|
||||||
$img=
|
$img='<img src="/imgs/Gold_Medal.svg" alt="Gold_Medal.svg"/>';
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
|
$img='<img src="/imgs/Silver_Medal.svg" alt="Silver_Medal.svg"/>';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 3:
|
case 3:
|
||||||
|
$img='<img src="/imgs/Bronze_Medal.svg" alt="Bronze_Medal.svg"/>';
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
$img='<img src="/imgs/Emoji_u1f4a9.svg" alt="caca"/>';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
echo '<li>'.$img.'<a href="/p/aboutBot/'.$sc['id'].'">'.htmlentities($sc['name']).'</a> ELO Rank: '.$sc['ELO'].'</li>';
|
||||||
}
|
}
|
||||||
|
echo '</ul>';
|
||||||
|
|
||||||
foreach($hist as $sc){
|
foreach($hist as $sc){
|
||||||
$asideSectionContent.='<h3><a href="/p/aboutBot/'.htmlentities($sc['bot1']).'">'.$sc['bot1'].'</a> VS <a href="/p/aboutBot/'.htmlentities($sc['bot2']).'">'.$sc['bot2'].'</a></h3>
|
$asideSectionContent.='<h3><a href="/p/aboutBot/'.htmlentities($sc['bot1']).'">'.$sc['bot1'].'</a> VS <a href="/p/aboutBot/'.htmlentities($sc['bot2']).'">'.$sc['bot2'].'</a></h3>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user