very sloppy coding here:
then go to http://yoursite.com/motto.php?user=Blinger (that would retrieve my motto)PHP Code:<?php
$user = $_GET['user'];
$page = file_get_contents("http://www.habbo.co.uk/home/$user"); // Change the URL to the hotel you would like
$start = explode('<div class="profile-motto">', $page, 2);
$end = explode('<div class="clear"></div></div>', $start[1], 2);
$motto = trim($end[0]);
echo ("$motto"); // Set the message you want to be displayed (Leave in the $amount)
?>





Reply With Quote
Thank you



