<?php
$image = "banner.gif";
$im = imagecreatefromgif($image);
$tc = ImageColorAllocate ($im, 0, 0, 0);
$ip = getenv('REMOTE_ADDR');
$date = date("F j, Y");
ImageString($im, 2, 4, 8, "Hello $ip", $tc);
ImageString($im, 2, 501, 8, "Today is $date", $tc);
header("Content-Type: image/gif");
Imagepng($im,'',100);
ImageDestroy ($im);
?>