Account Maker Top 5 Graczy

mafa123

User
Zarejestrowany
Dołączył
Luty 16, 2015
Posty
48
Liczba reakcji
0
Witam mam problem z plikiem o to b??d
Status
Server Offline
Top 5 Graczy

Fatal error: Class 'Cache' not found in F:\xampp\htdocs\plugin\topplayers.php on line 9


<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-title">Top 5 Graczy</div>
</div>
<div class="panel-body">
<table class="table table-condensed table-content table-striped">
<tbody>
<?php
$cache = new Cache('plugin/topPlayer');
if ($cache->hasExpired()) {
$players = mysql_select_multi('SELECT `name`, `level`, `experience`, `looktype`, `lookaddons`, `lookhead`, `lookbody`, `looklegs`, `lookfeet` FROM `players` WHERE `group_id` < ' . $config['highscore']['ignoreGroupId'] . ' ORDER BY `experience` DESC LIMIT 5;');
$cache->setContent($players);
$cache->save();
} else {
$players = $cache->load();
}
if ($players) {
$count = 1;
foreach($players as $player) {
echo '<tr><td><div class="pull-left push-15-r"><img style="margin-top: -35px; margin-left: -35px;" src="https://outfit-images.ots.me/animatedOutfits1090/animoutfit.php?id='.$player['looktype'].'&addons='.$player['lookaddons'].'&head='.$player['lookhead'].'&body='.$player['lookbody'].'&legs='.$player['looklegs'].'&feet='.$player['lookfeet'].'&g=0&h=3&i=1"></img></div> <a href="characterprofile.php?name='.$player['name'].'">'.$player['name'].'</a> <div class="panel-title pull-right"><code>'. $player['level'].'</code></div></td></tr>';
$count++;
}
}
?>
</tbody>
</table>
</div>
</div>
 
Odp: Top 5 Graczy

Co to wgl za acc ?
 
Ostatnia edycja:
Odp: Top 5 Graczy

Pod 8.54 u?yj sobie G?siora :)
 
Back
Do góry