pull-icon
logo-mobile

Experience Level Evaluation

Home/Forums/Experience Level Evaluation

EmmaS

yesterday

<?php
declare(strict_types=1);

// Example data
$username = "Susan";
$count    = 287;

// ---------------------------------------
// LEVEL SYSTEM (clean, scalable)
// ---------------------------------------
$levels = [
    12800 => 10,
    6400  => 9,
    3200  => 8,
    1600  => 7,
    800   => 6,
    400   => 5,
    200   => 4,
    100   => 3,
    50    => 2,
    0     => 1
];

// Determine level
$lvl = 1;
foreach ($levels as $xp => $level) {
    if ($count >= $xp) {
        $lvl = $level;
        break;
    }
}

// ---------------------------------------
// RENDER STARS (★)
// ---------------------------------------
$stars = str_repeat("&#9733;", $lvl);
?>
<!DOCTYPE html>
<html>
<body style="font-family:Arial, sans-serif; font-size:16px;">

<p style="font-size:22px; color:#f4b400;">
    <?= $stars ?>
</p>

<p>
    <strong><?= htmlspecialchars($username) ?></strong>
    is level <strong><?= $lvl ?></strong>  
    with <strong><?= $count ?></strong> XP
</p>

</body>
</html>

Leave a Comment

You must be logged in to post a reply.


BellOnline provides fast, reliable UK hosting designed for modern radio and web projects. Optimised servers, strong security, and excellent uptime ensure your station runs smoothly.
MixStream delivers broadcast-grade radio streaming with outstanding stability, crystal-clear audio, and powerful performance even during peak listener hours. Perfect for hobby stations and professional broadcasters alike.


Your secure download link has been emailed to:

Goto BellOnline Now!