This is the code I have. It outputs Yellow text?
<?php
include("includes.php");
header("Content-Type: image/png");
$im = imagecreatefrompng("songband1.png");
if ($im)
{
ImageString($im, 1, 37, 4, "Hipbase.com Radio - Live Tragically Hip".$desc, 5);
ImageString($im, 2, 67, 12, "Currently Playing: ".$current_song, 1);
ImageString($im, 2, 67, 23, "There are $listeners / $max_listeners listeners", 2);
ImagePNG($im);
}
?>
What would I have to add?
Thanks