Show sourcecode
The following files exists in this folder. Click to view.
changeowned.php
classes/
createcard.php
database.php
forgot.php
incl/
index.php
leaderboard.php
lineup.php
login.php
logout.php
newpass.php
otherlineup.php
playerinfo.php
projekt.zip
skapatabeller.php
verify.php
leaderboard.php
34 lines UTF-8 Windows (CRLF)
<?php
$title = "Rankning";
$pageId = "leaderboard";
$pageStyle = '
figure {
border-radius: 10px;
border-color:#333;
box-shadow: 10px 10px 5px #888;
}';
require_once("classes/collection.php");
$leaderboard = new Collection($dbconn);
include("incl/header.php");
?>
<section>
<table>
<tr>
<th>Namn</th>
<th>Antal Kort</th>
<th>Bästa kort</th>
<th>Bästa lag</th>
</tr>
<?php
$leaderboard->leaderboard();
?>
</table>
</section>
<script>
function lineup(id, name) {
let website = "otherlineup.php?userid=" + id + "&name=" + name;
window.open(website)
}
</script>
<?php include("incl/footer.php") ?>