Try this code
<?php
ob_start();
include('musicheader.txt');
?>
<?php
header('Content-Type: image/png');
$im = imagecreatetruecolor(175, 15);
imagesavealpha($im, true);
// Create some colors
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 150, 25, $black);
$trans_colour = imagecolorallocatealpha($im, 0, 0, 0, 127);
imagefill($im, 0, 0, $trans_colour);
// The text to draw
$text = $_GET['hello hello'];
// Replace path by your own font path
$font = './COOLVETI.TTF';
// Add some shadow to the text
imagettftext($im, 9, 0, 13, 16, $black, $font, $text);
// Add the text
imagettftext($im, 9, 0, 12, 15, $white, $font, $text);
// Using imagepng() results in clearer text compared with imagejpeg()
imagepng($im);
imagedestroy($im);
?>
<p align="center"> <font class="text">
Music:
</font>
</p>
<div id="mediaspace"><embed type="application/x-shockwave-flash" src="js/player.swf" style="" id="ply" name="ply" quality="high" allowfullscreen="true" allowscriptaccess="always" wmode="opaque" flashvars="description=test;file=http://www.secretcomix.com/TKJK.mp3" height="480" width="640"></div>
<script type="text/javascript" src="js/swfobject.js">
</script>
<script type="text/javascript">
var so = new SWFObject('js/player.swf','ply','470','20','9');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('description','Anderson - First TV Apparence');
so.addVariable('file', '
http://www.secretcomix.com/TKJK.mp3'); so.write('mediaspace');
</script>
<? include('musicfooter.txt'); ?>