Does anyone have the script for an image countdown like
![]()

Does anyone have the script for an image countdown like
![]()
http://www.minisitegallery.com/blog/...e-setting.html
Very helpful site that guides you through it!
2005: JOINED ; Radio DJ
2006: Radio DJ ; Senior DJ
2007: HxTV Flash Artist ; Productions Staff ; HxHD Staff ; Head DJ ; Events Organiser ; Productions Staff ; Competitions Staff ; Assistant Radio Manager
2008: Senior Competitions Staff ; Forum Moderator ; HxHD Staff ; Competitions Manager ; Graphics Designer
2009: LEFT ; Guest DJ
Taken from PHP.net :
PHP Code:<?php
header("Content-type: image/png");
$string = $_GET['text'];
$im = imagecreatefrompng("images/YOURIMAGE.PNG");
$orange = imagecolorallocate($im, 123, 210, 60);
$px = (imagesx($im) - 7.5 * strlen($string)) / 2;
imagestring($im, 3, $px, 15, $string, $orange);
imagepng($im);
imagedestroy($im);
?>
Want to hide these adverts? Register an account for free!