Code - whatimplayin

<?php
include("includes.php");
header("Content-Type: image/png");
$im imagecreatefrompng("songband1.png");

if (
$im)
{
ImageString($im,  1,  17,  4,  "Playing: ".$current_song,  2);
ImageString($im,  1,  17,  17,  "There are ".$listeners,  2);

ImagePNG($im);
}
?>