RevCMS Player of the week and Room of the week system

Greaseme

Member
Jul 6, 2011
103
1
Hey DevBesters ,

I'm searching for an RevCMS Room Of The Week System and a Player of the week system.


Greetings , Greaseme
 

Data

Posting Freak
May 19, 2013
593
97
Just add this in a box and do the styling yourself.
Code:
<?php
$user = 'TheUserOfTheWeekHere';
$userinfo= mysql_fetch_assoc(mysql_query("SELECT * FROM users WHERE username = '{$user}'"));
?>
<img src = "https://www.habbo.nl/habbo-imaging/avatarimage?figure=<?php echo $userinfo['look']; ?>"><br>
<?php echo $userinfo['username'] . '<br>'; ?>
<?php echo $userinfo['motto'] . '<br>'; ?>
There may be a little code mistake as I wrote it in this box quickly, but it will probably be something obvious.
 

Greaseme

Member
Jul 6, 2011
103
1
Just add this in a box and do the styling yourself.
Code:
<?php
$user = 'TheUserOfTheWeekHere';
$userinfo= mysql_fetch_assoc(mysql_query("SELECT * FROM users WHERE username = '{$user}'"));
?>
<img src = "https://www.habbo.nl/habbo-imaging/avatarimage?figure=<?php echo $userinfo['look']; ?>"><br>
<?php echo $userinfo['username'] . '<br>'; ?>
<?php echo $userinfo['motto'] . '<br>'; ?>
There may be a little code mistake as I wrote it in this box quickly, but it will probably be something obvious.


Thankyou very much! There's no mistake in the code :)

Now i only need the ROTW System :D
 

Users who are viewing this thread

Top