[Release] RevCMS Habbo style Online Users page

Status
Not open for further replies.

Weedbox1995

New Member
Aug 9, 2011
14
1
Hello DevBest, I don't know if this has been released by anyone before, so I decided to just release the one I had.


NOTE: This is pretty much the staff page edited, I know.

Code:
<!DOCTYPE html><html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Burst - Online Users</title>
 
<link rel="stylesheet" href="http://bursthotel.net/app/tpl/skins/Habbo/styles/common.css" type="text/css">
<script type="text/javascript" src="http://bursthotel.net/app/tpl/skins/Habbo/js/libs2.js"></script>
<script type="text/javascript" src="http://bursthotel.net/app/tpl/skins/Habbo/js/visual.js"></script>
<script type="text/javascript" src="http://bursthotel.net/app/tpl/skins/Habbo/js/libs.js"></script>
<script type="text/javascript" src="http://bursthotel.net/app/tpl/skins/Habbo/js/common.js"></script>
<script type="text/javascript" src="http://bursthotel.net/app/tpl/skins/Habbo/js/fullcontent.js"></script>
 
<script type="text/javascript">
document.habboLoggedIn = true;
var habboName = "{username}";
var habboId = {userid};
var habboReqPath = "";
var habboStaticFilePath = "http://bursthotel.net/app/tpl/skins/Habbo";
var habboImagerUrl = "http://www.habbo.com/habbo-imaging/";
var habboPartner = "";
var habboDefaultClientPopupUrl = "http://bursthotel.net/client";
window.name = "habboMain";
if (typeof HabboClient != "undefined") {
HabboClient.windowName = "eac955c8dbc88172421193892a3e98fc7402021a";
HabboClient.maximizeWindow = true;
}
</script>
 
<!--[if IE 8]>
<link rel="stylesheet" href="http://bursthotel.net/app/tpl/skins/Habbo/styles/ie8.css" type="text/css">
<![endif]-->
<!--[if lt IE 8]>
<link rel="stylesheet" href="http://bursthotel.net/app/tpl/skins/Habbo/styles/ie.css" type="text/css" />
<![endif]-->
<!--[if lt IE 7]>
<link rel="stylesheet" href="http://bursthotel.net/app/tpl/skins/Habbo/styles/ie6.css" type="text/css" />
<script type="text/javascript" src="http://bursthotel.net/app/tpl/skins/Habbo/js/pngfix.js"></script>
<script type="text/javascript">
try { document.execCommand('BackgroundImageCache', false, true); } catch(e) {}
</script>
<style type="text/css">
body { behavior: url(http://bursthotel.net/app/tpl/skins/...csshover.htc); }
</style>
<![endif]-->
</head>
 
<body id="home">
 
<div id="overlay"></div>
<div id="header-container">
<div id="header" class="clearfix">
<h1><a href="http://bursthotel.net/"></a></h1>
<div id="subnavi">
<div id="subnavi-user">
<div style="margin-top:7px"><b>Fact:</b> {hotelName} Hotel opened on -- at --!</div>
</div>
<div id="subnavi-search">
<div id="subnavi-search-upper">
<ul id="subnavi-search-links">
<li><a href="http://bursthotel.net/logout" style="color:#000">Sign Out</a></li>
</ul>
</div>
</div>
<div id="to-hotel">
<a href="http://bursthotel.net/api.php" class="new-button green-button" target="eac955c8dbc88172421193892a3e98fc7402021a" onclick="HabboClient.openOrFocus(this); return false;"><b>Enter {hotelName} Hotel</b><i></i></a>
</div>
</div>
<ul id="navi">
<li class="metab"><a href="{url}/me">{username}</a><span></span></li>
<li class="selected"><strong>Community</strong><span></span></li>
</ul>
<div id="habbos-online"><div class="rounded"><span>{online} members online</span></div></div>
</div>
</div>
<div id="content-container">
<div id="navi2-container" class="pngbg">
<div id="navi2" class="pngbg clearfix">
<ul>
<li class=""><a href="http://bursthotel.net/community">Community</a></li>
<li class=""><a href="http://bursthotel.net/news">News</a></li>
<li class=" selected last">Staff</li>
<li class=""><a href="http://bursthotel.net/Moderators">Moderators</a></li>
<li class=""><a href="http://bursthotel.net/Eventsteam">Events Team</a></li>
</ul>
</div>
</div>
<div id="container">
<div id="content" style="position: relative" class="clearfix">
<div id="column1" class="column">
 
<div class="habblet-container ">
<div class="cbb clearfix red ">
 
 
<h2 class="title">All Online Users</h2>
<div style="padding:5px;">
 
<?php
 
 
$querylist = mysql_query("SELECT * FROM users WHERE online = '1' ORDER BY id ASC");
while($row = mysql_fetch_array($querylist))
{
echo "<div id=\"StaffBox\"><div id=\"StaffBox\">";
echo "";
 
 
echo "<div id=\"staff_online\">";
if($row['online'] == 0){
 
}
else{
 
 
}
echo "</div><div id=\"staff_username\">";
$username = $row['username'];
echo ucwords($username);
echo "</div>";
 
 
 
 
 
 
}
 
 
 
?>
 
<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
</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]-->
 
 
</div>
 
</body>
</html>



Just change around the links to your hotel, if you don't like it, that's fine but please don't post any hate below please, thanks!
 
Status
Not open for further replies.

Users who are viewing this thread

Top