Hi, I am storing the images in database and the codes is following :
<? include "connection.php"; $sql="select image from sportsevent where id='$_GET[id]'"; $rs=mysql_query($sql); $row=mysql_fetch_object($rs); header("(anti-spam-(anti-spam-content-type:)) image/jpg"); echo $row->image; mysql_free_result($rs);?>
Could you tell me how to watermark images while outputting image in this way??? Thanks