PHP קוד:
<?php
$date = date("d.m.y") . "/" . date("H:i:s");
$im = imagecreate(160, 20);
$bg = imagecolorallocate($im, 255, 255, 255);
$textcolor = imagecolorallocate($im, 0, 0, 255);
imagestring($im, 5, 0, 0, $date, $textcolor);
header("Content-type: image/jpg");
imagejpeg($im);
?>
בבקשה
