LethalEdward
Member
- Sep 2, 2010
- 119
- 22
Hello,
i have seen this been released but i thought i'd let my code out as it doesn't need an external file some people need as an online.cfm or online.php
Use this code or download it
Replace the image.
Credits All To Me
i have seen this been released but i thought i'd let my code out as it doesn't need an external file some people need as an online.cfm or online.php
PHP:
<?php
$dbhost = 'localhost';
$dbuser = 'Username';
$dbpass = 'Password';
$dbname = 'Database';
$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');
mysql_select_db($dbname);
$result = mysql_query("SELECT * FROM server_status");
$row = mysql_fetch_array( $result );
$text = "Habbos Online";
$image = imagecreatefrompng('images/02.png');
$black = imagecolorallocate($image, 0, 0, 0);
imagefttext($image, 8, 0, 182, 80, $black, './verdanab.ttf', $row['users_online']);
// imagefttext($image, 8, 0, 182, 75, $black, './verdana.ttf', $text); // Remove the // ahead of this line to use it
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
?>
Use this code or download it
You must be registered for see links
Replace the image.
Credits All To Me