tyler
By: a guest | Aug 12th, 2009 | Syntax:
PHP | Size: 0.72 KB | Hits: 133 | Expires: Never
<?php
//created and designed by ttyler333
//Will be placed on http://nukewarz.com
//Feel free to use
$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");
?>