Creating Static Progress Bar
Follwing code will create a statis progress bar in php
$im = imagecreate(148, 9 );
$black = ImageColorAllocate($im, 208, 33, 98);
$white = ImageColorAllocate($im, 255, 255, 255);
imagefill($im, 0, 0, $white);
$getPer = $_GET[’per’];
if($getPer > 0){
$val = ( 145 / 100 ) * $getPer;
imagefilledrectangle($im,00,10,$val,0,$black);
}
header(”Content-Type: image/png”);
imagepng($im);
In the above code static bar is created using imagefilledrectangle function.Bar value is depends upon the $_GET[’per’] value
