This is my current code... $points is passed into scoreboard.php which is the following:
Header("Content-type: image/png");
$im = @ImageCreateFromPNG ('images/bee.png');
$black = ImageColorAllocate ($im, 0, 0, 0);
ImageString ($im, 3, 5, 70, "$points entries", $black);
ImagePNG($im);
ImageDestroy($im);