[HELP] Staff PaGe Code

HabboFresh

New Member
Sep 15, 2016
17
0
Could some one give me a html code for my retros ?? Staff page , Have a Ticket Resolve , Bans :) Pleas help me!!!
This my currently :

HTML:
 <div id="content-container">

<div id="container">
<div id="content" style="position: relative" class="clearfix">
<div id="column1" class="column">
<?php
$GetRanks = mysql_query("SELECT id,name FROM ranks WHERE id > 3 ORDER BY id DESC");
while($Ranks = mysql_fetch_assoc($GetRanks))
{
echo "<div class=\"habblet-container \"><div class=\"cbb clearfix blue \"><h2 class=\"title\">{$Ranks['name']}s</h2><div style=\"padding:5px\"><p>";
$GetUsers = mysql_query("SELECT username,motto,rank,last_online,online,look FROM users WHERE rank = {$Ranks['id']}");
while($Users = mysql_fetch_assoc($GetUsers))
{
if($Users['online'] == 1){ $OnlineStatus = "<font color=\"darkgreen\"><b>Duty</b></font>"; } else { $OnlineStatus = "<font color=\"darkred\"><b>Off Duty</b></font>"; }
echo "<img style=\"position:absolute;\" src=\"/habbo-imaging/a/habbo-imaging/a...wav&direction=2&head_direction=3&gesture=srp\">"
."<p style=\"margin-left:80px;margin-top:20px;\">Username: <strong>{$Users['username']}</strong><br>Motto: <strong>{$Users['motto']}</strong><br><small>Last Online: ". date("D, d F Y H:i (P)", $Users['last_online']) ."</small><br></p>"
."<p style=\"float:right;margin-top:-30px;margin-right:5px;\">{$OnlineStatus}</p><br><br><br>";
}
echo "</div></div></div>";
}
?>
<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
</div>
<div id="column2" class="column">
<div class="habblet-container ">
<div class="cbb clearfix blue ">
<h2 class="title">Who are these people?</h2>
<div style="padding:5px">
The {hotelName} Hotel staff are people who have the power and authority to maintain the hotel. This covers everything
from banning users to hosting events, giving users credits and much more. To find a staff member in the hotel
you will need to look for a user who has a badge like the one below.
<br><br>
<center><img src="images.habbogroup./c_images/album1584/ADM.gif"></center>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
<script type="text/javascript">
HabboView.run();
</script>

<!--[if lt IE 7]>
<script type="text/javascript">
Pngfix.doPngImageFix();
</script>
<![endif]-->
<?php include_once("includes/footer.php"); ?>
<script type="text/javascript">
HabboView.run();
</script>
<center>
 
</body>
 

iGlenn

:)
Jul 21, 2015
618
92
which?
are u blind mate?
open up navicat > your database
GDDbIyG.png

then copy and run these then you should appear on your staff page
PHP:
ALTER TABLE `users` ADD `role` int(100) NOT NULL
ALTER TABLE `users` ADD `contract` int(100) NOT NULL
sorry for the images, i figured you'll understand more if i showed u instead of telling
 

Users who are viewing this thread

Top