<?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>'; ?>
Just add this in a box and do the styling yourself.
There may be a little code mistake as I wrote it in this box quickly, but it will probably be something obvious.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>'; ?>
Do the CSS yourself, not hard.Well thanks but i need the CSS with it.