Posted by tyler on Wed 12 Aug 23:17 (modification of post by tyler view diff)
report abuse | View followups from Anonymous, Anonymous, Anonymous, dffd, yoooo, Anonymous, Anonymous, vj and gfnhd | download | new post
- <?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";
- $im = imagecreatefromgif($image);
- $src = imagecreatefromgif('http://nukewarz.com/images/progresspix.gif');
- imagecopy($im, $src, 0, 0, 0, 0, $percent2, 25);
- $red = ImageColorAllocate ($im, 255, 0, 0);
- $blue = ImageColorAllocate ($im, 0, 0, 255);
- $white = ImageColorAllocate ($im, 200, 200, 200);
- $blk = ImageColorAllocate ($im, 0, 0, 0);
- ImageString($im, 4, 90, 4, $percent . "%", $white);
- Imagegif($im,'',100);
- ImageDestroy ($im);
- ?>
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.