gfnhd
By: a guest | Jan 22nd, 2010 | Syntax:
PHP | Size: 0.74 KB | Hits: 36 | Expires: Never
<?php
//created and designed by ttyler333
//Will be placed on http://nukewarz.com
//Feel free to download those images also
$percent = $_GET['x'];
if($percent > 100){ $percent = "100";}
$percent2 = $percent * 2;
$image = "http://nukewarz.com/images/bgprogress.gif";
imagecopy($im, $src, 0
, 0
, 0
, 0
, $percent2, 25
);
header("Content-Type: image/gif");
?>