Просмотр файла img.php
- <?php
- $vote = abs(intval($_GET['img']));
- if ($vote > 100)
- $vote = 100;
- header("Content-type: image/gif");
- $vote_img = imageCreateFromGIF("images/vote.gif");
- $color = imagecolorallocate($vote_img, 0, 191, 36);
- imagefilledrectangle($vote_img, 0, 0, $vote, 6, $color);
- ob_start();
- ImageGIF($vote_img, null, 100);
- ImageDestroy($vote_img);
- header("Content-Type: image/gif");
- header('Content-Disposition: inline; filename=vote.gif');
- header('Content-Length: ' . ob_get_length());
- ob_end_flush();
- ?>