• 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

Active Member
Joined
Jan 27, 2008
Messages
267
Solutions
11
Reaction score
36
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
}
Back
Top