mirror of
https://github.com/sigmasternchen/mobmash.click
synced 2025-03-15 16:19:02 +00:00
11 lines
288 B
PHP
11 lines
288 B
PHP
![]() |
<?php
|
||
|
|
||
|
require_once __DIR__ . "/database.php";
|
||
|
|
||
|
function getEloForMob(int $mob): int {
|
||
|
global $pdo;
|
||
|
$query = $pdo->prepare("SELECT * FROM mm_current_rating WHERE mob = ?");
|
||
|
$query->execute([$mob]);
|
||
|
$result = $query->fetch(PDO::FETCH_ASSOC);
|
||
|
return $result["rating"];
|
||
|
}
|