• 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!

Znote acc problem with achiewements

tim26

Member
Joined
Aug 12, 2008
Messages
618
Reaction score
11
Location
Poland
I have errors in show achieewements on site


Name Description Points

Warning: Undefined array key 30023 in C:\xampp\htdocs\characterprofile.php on line 674

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\characterprofile.php on line 674

Warning: Undefined array key 30023 in C:\xampp\htdocs\characterprofile.php on line 675

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\characterprofile.php on line 675
0

Warning: Undefined array key 30029 in C:\xampp\htdocs\characterprofile.php on line 674

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\characterprofile.php on line 674

Warning: Undefined array key 30029 in C:\xampp\htdocs\characterprofile.php on line 675

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\characterprofile.php on line 675
0

Warning: Undefined array key 30057 in C:\xampp\htdocs\characterprofile.php on line 674

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\characterprofile.php on line 674

Warning: Undefined array key 30057 in C:\xampp\htdocs\characterprofile.php on line 675

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\characterprofile.php on line 675
1



This i have in character profile

<?php foreach($achievements as $a): ?>
<tr>
<td><?php echo $c_achs[$a['key']][0]; ?></td>
<td><?php echo $c_achs[$a['key']][1]; ?></td>
<td><?php echo $a['value']; ?></td>
</tr>
<?php endforeach; ?>
 
PHP:
<?php
foreach($achievements as $a){
    if(isset($c_achs[$a['key']])){
?>
    <tr>
    <td><?php echo $c_achs[$a['key']][0]; ?></td>
    <td><?php echo $c_achs[$a['key']][1]; ?></td>
    <td><?php echo $a['value']; ?></td>
    </tr>
<?php
    }
}
?>
 
Back
Top