Hi all,
I am attaching the php file that will display a circle and on
top of it, it will show the current time. When its reloaded using the
browser's reload option. updated time is displayed. If the url is typed in
the address bar and the request is sent, it doesnt display updated time.
As a test I tried it in Netscape 7 instead of Netscape 4.75 and it worked
as expected.
I would like to get some help to fix it in the earlier version of
Netscape.
With lots of hope I'am expecting valuable solution.
Thanks & Regards,
- JFK
<?php
header("Cache-control: no-cache");
header ("Pragma: no-cache");
Header("Content-type: image/jpeg");
$image=ImageCreate(200,200);
$gray=ImageColorAllocate($image,0,204,204);
$blue=ImageColorAllocate($image,0,0,204);
ImageArc($image,50,65,70,70,0,360,$blue);
ImageString($image,3,20,20,time(),$blue);
ImageJPEG($image);
ImageDestroy($image);
?>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php