Im still working at fixing a website code after the server was upgraded. This no longer works. Any help from anyone?
PHP Code:
$width = 250; // width of bar
$height = 25; // height of bar
$per = imagecreate($width, $height);
$background = imagecolorallocate($per, 0xFF, 0xFF, 0xFF);
$foreground = imagecolorallocate($per, 0x00, 0x8A, 0x01);
$border = imagecolorallocate($per, 0x99, 0x99, 0x99);
if ($_GET['per'] > 0){
$grad = imagecreatefrompng("bar.png");
$per2 = imagecopy($per, $grad, 1, 1, 0, 0, ($_GET['per']*$width/100), ($height-2));
imagerectangle($per, 0, 0, ($width-1), ($height-1), $border);
}
header("Content-type: image/png");
imagepng($per, NULL, ($height-2));
Bookmarks