themaster2012
Member
- Feb 16, 2012
- 188
- 15
can u do for habbo theme too??
What theme is that ?You must be registered for see links
I've been messing around with RevCMS too!
you can easily make it for others themesYeah, I would love to have the character on their. And is this only with mango?
Cool ! BUT when i am in the retro its not comming up "stats" in the bar where "news" and "me" and "logout" are first when i seach like "localhost/stats" its comming up, but when i not are in the stats then its not in the bar? can you help me?Haii,
here is a simple page for Credits and pixels (activity points) top. Kristopher going to release his Credits page top. i wanted to release mine too ^^
Screenshot :
You must be registered for see links
need Help ? ask here i will answere.
Negativ comment keep them for yourself.
Credits : Extreme (me)
you need to add it to your headerCool ! BUT when i am in the retro its not comming up "stats" in the bar where "news" and "me" and "logout" are first when i seach like "localhost/stats" its comming up, but when i not are in the stats then its not in the bar? can you help me?
I dont know how to do that :syou need to add it to your header
Code for only rank 1 + 2
<div class="content-box">
<div class="content-box-black">
<h2 class="title">Credits</h2>
</div> <div class="content-box-content">
<table cellpadding='4' cellspacing='0' width='100%'>
<tr>
<td class='tablesubheader' width='50%' align='center'><b>Username</b></td>
<td class='tablesubheader' width='50%' align='center'><b>Credits</b></td>
</tr>
<?PHP
$rank1 = '1';
$rank2 = '';
$sql = mysql_query("SELECT username, credits FROM users where rank in ('1','2') ORDER BY credits DESC LIMIT 0,5");
while($a = mysql_fetch_array($sql)) {
echo "<tr>
<td class='tablerow1' align='center'><hr />".filter($a['username'])."</a></td>
<td class='tablerow2' align='center'><hr />".Filter($a['credits'])."</td>
</tr>";
} ?>
</table>
</div>
</div> <br/>
<!-- HERE WE START YOUR Pixels SCRIPT -->
<div class="content-box">
<div class="content-box-deep-blue">
<h2 class="title">Pixels</h2>
</div> <div class="content-box-content">
<table cellpadding='4' cellspacing='0' width='100%'>
<tr>
<td class='tablesubheader' width='50%' align='center'><b>Username</b></td>
<td class='tablesubheader' width='50%' align='center'><b>Pixels</b></td>
</tr>
<?PHP
$sql = mysql_query("SELECT username, activity_points FROM users where rank in ('1','2') ORDER BY activity_points DESC LIMIT 0,5");
while($a = mysql_fetch_array($sql)) {
echo "<tr>
<td class='tablerow1' align='center'><hr />".filter($a['username'])."</a></td>
<td class='tablerow2' align='center'><hr />".Filter($a['activity_points'])."</td>
</tr>";
} ?>
</table>
</div>
</div> <br/>
<div id="clear"></div></div>