Просмотр файла out.php

Размер файла: 913B
<?php
###########################
#Скрипт: Топ-Рейтинг	  #
#Автор: SL_NeKrOmAnT      #
#Версия: 1.2.1(Free)      #
#ICQ: 313886              #
#MAIL: [email protected]  #
###########################
define('NTOP', 1);
require_once('system/connect.php');
require_once('system/core.php');
require_once('system/function.php');
if(!$id OR $id < 1)
	{
		exit('Не верно введен ID');
	}
$isset = mysql_query("SELECT * FROM `".$prefix."sait` WHERE `status` != '0' AND `id` = '".$id."'");
if(mysql_num_rows($isset) == 0)
	{
		exit('Нет такого сайта!');
	}
$sait = mysql_fetch_array($isset);
		mysql_query("INSERT INTO `".$prefix."go` SET `id_sait` = '".$id."', `type` = 'out', `time` = '".time()."'");
		mysql_query("UPDATE `".$prefix."sait` SET `out` = (`out` + 1), `all_out` = (`all_out` + 1) WHERE `id` = '".$id."'");
		header('Location: http://'.$sait['url']);
?>