View file m/seo/cy.php

File size: 543B
<?php

define('NTOP', 1);
require_once ('../../system/connect.php');
require_once ('../../system/core.php');
header("Content-type: image/png");
$sait_t = mysql_query("SELECT * FROM `".$prefix."sait` WHERE `id` = '".$id."'");
if(mysql_num_rows($sait_t) > 0)
	{
		$sait = mysql_fetch_array($sait_t);
		$img = 'cy.png';
		$image = imagecreatefrompng($img);
		$cy = 60 - (strlen($sait['cy']) * 5);
		$black = imagecolorallocate($image, 188, 190, 188);
		ImageString($image,1,$cy,6,$sait['cy'],$black);
	}
imagepng($image);
imageDestroy($image);
?>