I've been trying for ages but I can get the time on the line below.
Does any one know?
Heres the code:
Its probably something easy i know it.
Does any one know?
Heres the code:
PHP:
<?php
header ("Content-type: image/png");
$img = imagecreatefrompng ("sig.png");
$colour = ImageColorAllocate ($img, 0, 0, 0);
$read1 = date("D dS M y h:i:s A");
$input = ($read1);
ImageString($img, 3, 15, 30, $input, $colour);
imagepng($img);
?>