Файл: indikator.php
Строк: 40
<?php
/// Это индикатор счетчика. фоновой рисунок индикатора лежит по адресу inc/button.png (изменяйте на свой вкус)
session_start();
include 'inc/db_connect.php';
include 'inc/function.php';
include 'inc/set.php';
if (isset($_GET['id']) && isset($_GET['c']))
{
$id = valid_int($_GET['id']);
$table = clean($_GET['c']);
} else
{
header("location: index.php?error=invalid_id");
exit();
}
$file_info = mysql_fetch_row(mysql_query('SELECT TRIM(`p_i_f`) FROM `' . $table . '` WHERE `id` = ' . $id . ' LIMIT 1'));
$count = explode('i', $file_info['0']);
$string = "$count[0]$count[1]";
header("Content-type: image/png");
$im = imagecreatefrompng("inc/button.png");
$orange = imagecolorallocate($im, 18, 84, 51);
$px = (imagesx($im) - 6 * strlen($string)) / 2;
imagestring($im, 2, $px, 2, $string, $orange);
imagepng($im);
imagedestroy($im);
?>