Файл: sumerki.mobi/sumerki.mobi/exp.php
Строк: 14
<?
$_GET[now] = htmlspecialchars($_GET[now]);
$_GET[now] = addslashes("$_GET[now]");
$_GET[max] = htmlspecialchars($_GET[max]);
$_GET[max] = addslashes("$_GET[max]");
$_GET[o1] = htmlspecialchars($_GET[o1]);
$_GET[o1] = addslashes("$_GET[o1]");
$o1 = $_GET[o1];
$max1 = $_GET[max]-$o1;
$now1 = $_GET[now]-$o1;
$health = ($now1*100/$max1)*2;
$health1 = ($now1*100)/($max1);
$img="pic/exp.gif";
$pic = ImageCreateFromgif($img);
header('Content-Type: image/gif');
$black = imagecolorallocate($pic, 58, 58, 58);
$white = imagecolorallocate($pic, 255, 255, 255);
imagefilledpolygon($pic, array(355,0, 0,40, $health,40, $health,0), 4, $black);
imagestring($pic, 1, 3, 2, "$health1 %", $white);
imagepolygon($pic, array(0,0, 0,19, 199,19, 199,0), 2, $black);
imagegif($pic);
?>