<?php require_once 'inc/core.php'; //ядро $page = 'rekgo'; if (isset($id)) { $issetSite = mysql_num_rows(mysql_query("SELECT `id` FROM `reklama` WHERE `id` = '$id';")); if ($issetSite == 1) { $oldOut = mysql_fetch_array(mysql_query("SELECT `gois`,`link` FROM `reklama` WHERE `id` = '$id';")); $newOut = $oldOut['gois']+1; mysql_query("UPDATE `reklama` SET `gois`='" .$newOut."' WHERE `id` = '$id';"); header('Location: http://'.$oldOut['link']); } else header('Location: '.$path.'index.php'); } else header('Location: '.$path.'index.php'); ?>