forked from vergnet/site-accueil-insa
67 lines
No EOL
1.7 KiB
PHP
Executable file
67 lines
No EOL
1.7 KiB
PHP
Executable file
<?php
|
|
ob_start(); // Start reading html
|
|
include "script/db.php";
|
|
?>
|
|
<main>
|
|
<div class="box-jaune">
|
|
<span class="corners corners-top"></span>
|
|
<span class="corners corners-bottom"></span>
|
|
|
|
<div class="title">Stats de la semaine</div>
|
|
|
|
<span class="circles circles-top"></span>
|
|
<span class="circles circles-bottom"></span>
|
|
</div>
|
|
<section>
|
|
<strong>Les stats de la semaine.</strong>
|
|
<br><br>
|
|
Remporte le plus de points possible pour faire gagner ton équipe, mais attention à ne pas lui en faire
|
|
perdre !
|
|
<br><br>
|
|
|
|
</section>
|
|
|
|
<table class="out">
|
|
<td>
|
|
<div class="title">PKpeach</div>
|
|
<?php
|
|
$req = $db->query('SELECT texte, points FROM scores WHERE team = 0 ORDER BY id DESC');
|
|
while($r = $req->fetch()) {
|
|
?>
|
|
<span class="box-point">
|
|
<table class="in">
|
|
<td class="left"><?= $r['texte'] ?></td>
|
|
<td class="right"><?= $r['points'] ?></td>
|
|
</table>
|
|
</span>
|
|
<?php
|
|
}
|
|
?>
|
|
</td>
|
|
<td>
|
|
<div class="title">Boomario</div>
|
|
<?php
|
|
$req = $db->query('SELECT texte, points FROM scores WHERE team = 1 ORDER BY id DESC');
|
|
while($r = $req->fetch()) {
|
|
?>
|
|
<span class="box-point">
|
|
<table class="in">
|
|
<td class="left"><?= $r['texte'] ?></td>
|
|
<td class="right"><?= $r['points'] ?></td>
|
|
</table>
|
|
</span>
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
|
|
|
|
</td>
|
|
</table>
|
|
|
|
|
|
</main>
|
|
<?php
|
|
$infopage = ["", "Statistiques", ob_get_clean(), "", "stats"]; //relativepath, pagetitle, pagecontent, pagescript | cf structure/template.php ligne 2 à 6
|
|
include("structure/template.php");
|
|
?>
|