Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2014
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. if ($i == 1)
  2. {
  3. $Playername=mysql_result($result,0,"Name");
  4. $Money=mysql_result($result,0,"Money");
  5. $Score=mysql_result($result,0,"PlayerLevel");
  6. $im = @imagecreatefrompng('inc/pages/imgp.png') or die ("Cannot select the correct image. Please contact the webmaster.");
  7. $text_color = imagecolorallocate($im, 197,197,199);
  8. $text_username = "$Name";
  9. $text_score = "$PlayerLevel";
  10. $text_money = "$Money";
  11. $font = 'arial.ttf';
  12. imagettftext($im, 16, 0, 20, 36, $text_color, $font, $text_username);
  13. imagettftext($im, 16, 0, 72, 69, $text_color, $font, $text_score);
  14. imagettftext($im, 16, 0, 72, 99, $text_color, $font, $text_money);
  15. imagepng($im);
  16. imagedestroy($im);
  17. } else echo('Username is not in our database. Please try again.');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement