Файл: redir.php
Строк: 35
<?php
$_CONF['title']='Переход по рекламе';
include 'header/config.inc.php';
include 'header/function.inc.php';
include 'header/header.inc.php';
include 'header/connect.inc.php';
include 'header/click-club.class.php';
include 'header/enter.inc.php';
include 'ban.php';
mysql_query("update `".prefix."users` set `mesto`='Ушол по рекламе', `online`='".time()."' where `id` = '".$_USER['id']."';");
$url = isset($_REQUEST['url']) ? $_REQUEST['url'] : '';
if(preg_match('#(http?|ftp)://S+[^s.,>)];'"!?]#i',$url)){
//session_destroy();
sleep(0);
//header("Location: $url");
unset($_SESSION['password']);
unset($_SESSION['login']);
//unset($_SESSION['id_user']);
echo "<html><head><meta http-equiv="refresh" content="1;url=$url"></head></html>";
echo '<div class="menuindex">Если не сработала переадресация, <b>кликните <a href="'.$url.'">сюда</a></b></div>';
include 'header/end.inc.php';
exit();
}
// После того, как файл залит в корень сайта, все ссылки нужно сделать следующего вида:http://ваш-сайт.ру/redir.php?url=http://другой-сайт.ру/
?>