This has all been said before.
Ok. First 2 are easy, (users online + hit counter) both scripts can be found in my tutoral
http://thybag.co.uk/index.php?p=Tutorials&ind=25&page=2
hits is first and users online/today is underneath
Habbo online counter, is still in progress, as in where no sure its grabing the right line of code
PHP Code:
<?php
//get page
$lines = file('http://www.habbohotel.co.uk/');
//Get line
$Ndata = $lines['71']; // may be line 72 or 70 - try till one works
//Remove what we dont want
$Ndata = str_replace('<div id="toolbar-habbocount">', '', $Ndata);
$Ndata = str_replace("Habbos online</div>", "", $Ndata);
// Add text and output
echo "Current Habbos Online: ".$Ndata;
?>
So try a few lines and see if any work :D