Guest User

Untitled

a guest
Apr 10th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <?php
  2.  
  3. $dbhost = "localhost:1994";
  4. $dbuser = "root";
  5. $dbpass = "Cehfyd%^$123";
  6. $dbname = "freshdb";
  7.  
  8. $conn = mysql_connect($dbhost, $dbuser, $dbpass) or die('Cannot connect..');
  9. mysql_select_db($dbname);
  10.  
  11. $getInfo = mysql_query("SELECT * FROM server_status");
  12. $info = mysql_fetch_array($getInfo);
  13.  
  14. $row = mysql_fetch_array( $result ); 
  15. $text = "    Habbos Online"; 
  16. $image = imagecreatefrompng('02.png'); 
  17. $black = imagecolorallocate($image, 0, 0, 0); 
  18. imagefttext($image, 10, 0, 186, 90, $black, './verdanab.ttf', $row['users_online']+100); 
  19. imagefttext($image, 10, 0, 205, 90, $black, './verdanab.ttf', $text); // Remove the // ahead of this line to use it 
  20.  
  21. header('Content-type: image/png');
  22. imagepng($image);
  23. imagedestroy($image);
  24. ?>
Add Comment
Please, Sign In to add comment