Aye,
Welcome to a short tutorial which will teach you how to display the amount of Habbos Online the hotel.
Firstly, you need to create a .php document.
Inside your .php file, insert/add this code:
If there was 10001 Habbos Online http://habbohotel.co.uk then the output of this code would be as follows:PHP Code:<?php
$page = file_get_contents("http://www.habbo.co.uk"); // Change the URL to the hotel you would like
$start = explode('<span class="stats-fig">', $page, 2);
$end = explode('</span>', $start[1], 2);
$amount = trim($end[0]);
echo "There are $amount Habbos online!"; // Set the message you want to be displayed (Leave in the $amount)
?>
There are currently 10001 Habbos on the UK Hotel!
The code is very easy to alter.
If there are any problems, let me know! PM me or send them as a reply.
Edited by --ss-- (Forum Super Moderator): The code has been updated to work with the current version.






.
Reply With Quote










