can some1 help me please
ive written the following code....
<?php
//create the canvas
$myImage = ImageCreateFromGif("shirt.gif");
//output the image to the browser
header ("content-type: image/gif");
ImageGif($myImage);
//clean up after yourself
ImageDestroy($myImage);
?>
this works but now i want to write out a form underneath the image, i tried echo " and then the html but i got a load of gobbledegook what am i doing wrong?