Hi all,
I just started learning php and have so many questions to ask.
Such as how to create image in php?
I already try to use imagecreate() this function and imagegif(), but still there exists errors when i link to the php file.
<?php
header ("Content-type: image/gif");
$image = imagecreate( 200, 200 );
imagegif($image);
?>
Is there any connection with GD function? If so, how should i make these gd functions work while i'm creating images in php?
By the way, would u mind helping me in explaining what and how header works in php program.
Thanks so much
Have a nice day