• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

PHP Show image1 when count is 100...

Svira

Banned User
Joined
Jan 27, 2008
Messages
361
Solutions
13
Reaction score
106
Hi, gentlemen, I am asking for a PHP script that, after reaching 100, next to badge1, after reaching 200, will display badges 1 and 2

PHP:
<?php echo $profile_data['monsterkills']; ?>
 
Solution
B
PHP:
<?php
   
$kills = (int)$profile_data['monsterkills'];
if($kills >= 100){
    //draw first
}
if($kills >= 200){
    //draw second
}

Similar threads

Back
Top