im having problems with my php sig. It just displays the code. I know im doing something wrong im not sure what though.
This is what i entered in. It wil be edited of course this is just a test to get me started. I had gotten the code off the internet so it could be wrong. I'm a php newbie.
PHP Code:
$string2 = "TEST";
$im= imagecreatefrompng("http://pctechclub.ath.cx/images/black.png");
$color = imagecolorallocate($im, 255, 255, 255);
$px=120;
$py=30;
imagestring($im, 3, $px, $py, $string, $color);
imagestring($im, 2, $px, $py+12, $string2, $color);
imagepng($im);
imagedestroy($im);
Edit:nm fixed it. I accidently removed this line
header("Content-type: image/png");